/* Modern Privacy Policy Styles */
#privacy-policy {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: 100vh;
}

#privacy-policy .p-relative {
    overflow-x: hidden;
    position: relative;
}

#privacy-policy .decor {
    top: 10%;
    right: 20%;
    opacity: 0.6;
}

/* Hero Section */
.policy-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 25px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 3.5rem;
    font-family: ClashDisplayBold;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.policy-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 30px;
    font-family: ClashDisplayMedium;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: ClashDisplaySemiBold;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(232, 118, 44, 0.3);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.hero-badge:hover {
    transform: translateY(-2px);
}

.hero-badge i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.effective-date {
    display: inline-flex;
    align-items: center;
    background: rgba(232, 118, 44, 0.1);
    color: #e8762c;
    padding: 8px 16px;
    border-radius: 25px;
    font-family: ClashDisplayMedium;
    font-size: 0.9rem;
    border: 1px solid rgba(232, 118, 44, 0.2);
}

.effective-date i {
    margin-right: 6px;
    font-size: 1rem;
}

/* Introduction Card */
.policy-intro {
    margin-bottom: 35px;
}

.intro-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(232, 118, 44, 0.1);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.card-content h3 {
    font-family: ClashDisplayBold;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Policy Sections */
.policy-sections {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-section {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.section-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #1a1a1a;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: ClashDisplayBold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.section-header h2 {
    font-family: ClashDisplayBold;
    font-size: 1.8rem;
    margin: 0;
    color: #1a1a1a;
}

.section-content {
    padding: 25px;
}

.section-intro {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: ClashDisplayMedium;
}

/* Information Types Cards */
.info-types {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.info-content ul {
    margin: 0;
    padding-left: 20px;
    color: #555;
}

.info-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.usage-item {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.usage-item h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #92400e;
    margin-bottom: 10px;
}

.usage-item p {
    color: #92400e;
    line-height: 1.5;
    margin: 0;
}

/* Data Sharing Policy */
.sharing-policy {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.policy-statement {
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 2px solid;
}

.policy-statement.success {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #22c55e;
    color: #15803d;
}

.policy-statement.info {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-color: #3b82f6;
    color: #1d4ed8;
}

.statement-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.policy-statement.success .statement-icon {
    background: #22c55e;
    color: white;
}

.policy-statement.info .statement-icon {
    background: #3b82f6;
    color: white;
}

.statement-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.statement-content p {
    line-height: 1.6;
    margin: 0;
}

/* Cookie Purposes */
.cookie-purposes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.purpose-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(232, 118, 44, 0.05);
    border-radius: 8px;
    border-left: 4px solid #e8762c;
}

.purpose-item i {
    color: #e8762c;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.purpose-item span {
    color: #555;
    line-height: 1.5;
}

.cookie-control {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    border: 1px solid #8b5cf6;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.control-icon {
    width: 40px;
    height: 40px;
    background: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.control-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #5b21b6;
    margin-bottom: 8px;
}

.control-content p {
    color: #5b21b6;
    line-height: 1.5;
    margin: 0;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.security-card {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.security-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.security-card h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #15803d;
    margin-bottom: 10px;
}

.security-card p {
    color: #15803d;
    line-height: 1.5;
    margin: 0;
}

/* Data Retention */
.retention-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.retention-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.retention-item:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    transform: translateX(5px);
}

.retention-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.retention-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.retention-content p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.deletion-notice {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.notice-icon {
    width: 40px;
    height: 40px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notice-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #dc2626;
    margin-bottom: 8px;
}

.notice-content p {
    color: #dc2626;
    line-height: 1.5;
    margin: 0;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.right-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 12px;
}

.right-card h4 {
    font-family: ClashDisplayBold;
    font-size: 1rem;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.right-card p {
    color: #1d4ed8;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
}

.rights-contact {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #d97706;
    margin-bottom: 8px;
}

.contact-content p {
    color: #d97706;
    line-height: 1.5;
    margin: 0;
}

/* Third-Party Services */
.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.service-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    transform: translateY(-2px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.service-content p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.third-party-notice {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 25px;
}

/* Children's Privacy & International Transfers */
.children-policy,
.transfer-policy {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.policy-icon,
.transfer-icon {
    width: 50px;
    height: 50px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.policy-content h4,
.transfer-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.2rem;
    color: #dc2626;
    margin-bottom: 12px;
}

.policy-content p,
.transfer-content p {
    color: #dc2626;
    line-height: 1.6;
    margin: 0;
}

/* Change Process Steps */
.change-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.contact-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #3b82f6;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: translateY(-2px);
}

.contact-info h4 {
    font-family: ClashDisplayBold;
    font-size: 1.1rem;
    color: #1d4ed8;
    margin-bottom: 8px;
}

.contact-info p {
    color: #1d4ed8;
    line-height: 1.5;
    margin: 0;
}

.commitment-statement {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #22c55e;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 25px;
}

.commitment-icon {
    width: 50px;
    height: 50px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.commitment-content h4 {
    font-family: ClashDisplayBold;
    font-size: 1.2rem;
    color: #15803d;
    margin-bottom: 10px;
}

.commitment-content p {
    color: #15803d;
    line-height: 1.6;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e8762c, #ff5f08);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(232, 118, 44, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 118, 44, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* Interactive Enhancements */
.policy-section {
    cursor: default;
}

.section-number {
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-number:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(232, 118, 44, 0.4);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.section-number:focus {
    outline: 3px solid #e8762c;
    outline-offset: 2px;
}

/* Enhanced gradient animations */
.hero-badge,
.section-number,
.info-icon,
.usage-icon,
.security-icon,
.retention-icon,
.right-icon,
.service-icon,
.step-number,
.contact-icon,
.commitment-icon {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Improved text selection */
::selection {
    background: rgba(232, 118, 44, 0.2);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(232, 118, 44, 0.2);
    color: #1a1a1a;
}

/* Enhanced Responsive Design */
@media screen and (max-width: 992px) {
    .info-types,
    .usage-grid,
    .security-measures,
    .rights-grid,
    .third-party-services,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .policy-sections {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    #privacy-policy {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .policy-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .policy-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .effective-date {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .intro-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        margin: 0 15px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .policy-sections {
        gap: 20px;
        margin: 0 15px;
    }

    .section-header {
        padding: 18px 15px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-content {
        padding: 20px 15px;
    }

    .info-card,
    .service-card,
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 15px;
    }

    .retention-item,
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .policy-statement,
    .cookie-control,
    .deletion-notice,
    .rights-contact,
    .third-party-notice,
    .children-policy,
    .transfer-policy,
    .commitment-statement {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 15px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Disable hover effects on mobile */
    .info-card:hover,
    .usage-item:hover,
    .security-card:hover,
    .right-card:hover,
    .service-card:hover,
    .contact-card:hover,
    .policy-section:hover,
    .retention-item:hover,
    .process-step:hover {
        transform: none;
    }

    .section-number:hover {
        transform: none;
    }
}

@media screen and (max-width: 480px) {
    #privacy-policy {
        padding-top: 90px;
    }

    .policy-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .policy-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .effective-date {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .intro-card {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .policy-sections {
        margin: 0 10px;
        gap: 15px;
    }

    .section-header {
        padding: 15px 12px;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .section-content {
        padding: 18px 12px;
    }

    .section-intro {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .info-card,
    .service-card,
    .contact-card {
        padding: 20px 15px;
        margin: 0;
    }

    .info-icon,
    .usage-icon,
    .security-icon,
    .retention-icon,
    .right-icon,
    .service-icon,
    .contact-icon,
    .commitment-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .usage-item,
    .security-card,
    .right-card {
        padding: 20px 15px;
    }

    .retention-item,
    .process-step {
        padding: 15px 12px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .policy-statement,
    .cookie-control,
    .deletion-notice,
    .rights-contact,
    .third-party-notice,
    .children-policy,
    .transfer-policy,
    .commitment-statement {
        padding: 15px 12px;
    }

    .statement-icon,
    .control-icon,
    .notice-icon,
    .policy-icon,
    .transfer-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media screen and (max-width: 360px) {
    .policy-title {
        font-size: 1.8rem;
    }

    .intro-card,
    .policy-sections {
        margin: 0 5px;
    }

    .section-header,
    .section-content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .info-card,
    .service-card,
    .contact-card {
        padding: 15px 12px;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .effective-date {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .section-number {
        cursor: default;
    }

    /* Increase touch targets */
    .section-number {
        min-width: 44px;
        min-height: 44px;
    }

    /* Remove hover effects on touch devices */
    .intro-card:hover,
    .policy-section:hover,
    .info-card:hover,
    .usage-item:hover,
    .security-card:hover,
    .right-card:hover,
    .service-card:hover,
    .contact-card:hover,
    .retention-item:hover,
    .process-step:hover,
    .section-number:hover {
        transform: none;
        box-shadow: inherit;
    }
}
