/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Make all images responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #E0E0E0;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
    font-size: 48px;
    font-weight: 300;
    color: #113768;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}

/* INTRODUCTION SECTION */
.introduction {
    background: #FFFFFF;
    padding: 60px 20px;
}

.introduction-container {
    max-width: 900px;
    margin: 0 auto;
}

.effective-date {
    font-size: 14px;
    font-weight: 500;
    color: #3A68B8;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.introduction-text {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .introduction {
        padding: 40px 20px;
    }

    .effective-date {
        font-size: 13px;
    }

    .introduction-text {
        font-size: 15px;
    }
}

/* INFORMATION WE COLLECT SECTION */
.info-collect {
    background: #F8F9FA;
    padding: 80px 20px;
}

.info-collect-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #113768;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEEEEE;
}

.card-title {
    font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #113768;
    letter-spacing: 0.3px;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 15px;
    font-weight: 300;
    color: #555555;
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #3A68B8;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .info-collect {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 24px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-list li {
        font-size: 14px;
    }
}

/* HOW WE USE YOUR INFORMATION SECTION */
.how-we-use {
    background: #FFFFFF;
    padding: 80px 20px;
}

.how-we-use-container {
    max-width: 900px;
    margin: 0 auto;
}

.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.numbered-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #F0F0F0;
}

.numbered-item:last-child {
    border-bottom: none;
}

.number {
    font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #3A68B8;
    min-width: 48px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.item-text {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin: 0;
    padding-top: 2px;
}

@media (max-width: 768px) {
    .how-we-use {
        padding: 60px 20px;
    }

    .numbered-item {
        gap: 16px;
        padding: 20px 0;
    }

    .number {
        font-size: 20px;
        min-width: 40px;
    }

    .item-text {
        font-size: 15px;
    }
}

/* SHARING OF INFORMATION SECTION */
.sharing-info {
    background: #F8F9FA;
    padding: 80px 20px;
}

.sharing-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.sharing-intro {
    font-size: 18px;
    font-weight: 500;
    color: #113768;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.sharing-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
}

.sharing-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.sharing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.sharing-list li {
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.sharing-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 12px;
    color: #3A68B8;
    font-size: 16px;
    font-weight: 600;
}

.sharing-note {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
    border-left: 3px solid #3A68B8;
    margin: 0;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .sharing-info {
        padding: 60px 20px;
    }

    .sharing-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sharing-content {
        padding: 28px 20px;
    }

    .sharing-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .sharing-list li {
        font-size: 14px;
        padding-left: 24px;
    }

    .sharing-note {
        font-size: 14px;
        padding: 16px;
    }
}

/* COOKIES & TRACKING TECHNOLOGIES SECTION */
.cookies-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

.cookies-container {
    max-width: 900px;
    margin: 0 auto;
}

.cookies-box {
    background: #F5F6F7;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #E8E9EA;
}

.cookies-intro {
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.cookies-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.cookies-list li {
    font-size: 15px;
    font-weight: 400;
    color: #555555;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.cookies-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #3A68B8;
    font-size: 16px;
    font-weight: 700;
}

.cookies-note {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.8;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .cookies-section {
        padding: 60px 20px;
    }

    .cookies-box {
        padding: 28px 20px;
    }

    .cookies-intro {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cookies-list li {
        font-size: 14px;
        padding-left: 24px;
    }

    .cookies-note {
        font-size: 13px;
        padding-top: 16px;
    }
}

/* DATA STORAGE & PROTECTION SECTION */
.data-storage {
    background: #F8F9FA;
    padding: 80px 20px;
}

.data-storage-container {
    max-width: 1000px;
    margin: 0 auto;
}

.storage-intro {
    font-size: 18px;
    font-weight: 500;
    color: #444444;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.3px;
}

.storage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.storage-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
}

.storage-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.storage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.storage-title {
    font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #113768;
    letter-spacing: 0.3px;
    margin: 0;
}

.storage-compliance {
    font-size: 16px;
    font-weight: 500;
    color: #3A68B8;
    text-align: center;
    padding: 28px 40px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #E8E9EA;
    letter-spacing: 0.3px;
    margin: 0;
}

/* YOUR RIGHTS SECTION */
.your-rights {
    background: #FFFFFF;
    padding: 80px 20px;
}

.your-rights-container {
    max-width: 1100px;
    margin: 0 auto;
}

.rights-intro {
    font-size: 18px;
    font-weight: 500;
    color: #444444;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.3px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.rights-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #E8E9EA;
    transition: all 0.3s ease;
}

.rights-card:hover {
    background: #FFFFFF;
    border-color: #3A68B8;
    box-shadow: 0 4px 16px rgba(58, 104, 184, 0.1);
    transform: translateY(-4px);
}

.rights-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.rights-title {
    font-family: 'Segoe UI', 'Malgun Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.5;
}

.rights-footer {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-align: center;
    padding: 24px 32px;
    background: #F5F6F7;
    border-radius: 12px;
    border: 1px solid #E8E9EA;
    margin: 0;
    letter-spacing: 0.3px;
}

.rights-footer a {
    color: #3A68B8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rights-footer a:hover {
    color: #113768;
    text-decoration: underline;
}

/* DATA RETENTION SECTION */
.data-retention {
    background: #F8F9FA;
    padding: 80px 20px;
}

.data-retention-container {
    max-width: 900px;
    margin: 0 auto;
}

.retention-intro {
    font-size: 18px;
    font-weight: 500;
    color: #444444;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.3px;
}

.retention-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
    margin-bottom: 40px;
}

.retention-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #F0F0F0;
    flex-wrap: wrap;
    gap: 10px;
}

.retention-item:last-child {
    border-bottom: none;
}

.retention-label {
    font-size: 16px;
    font-weight: 500;
    color: #444444;
    letter-spacing: 0.3px;
}

.retention-value {
    font-size: 16px;
    font-weight: 400;
    color: #3A68B8;
    letter-spacing: 0.3px;
}

.retention-footer {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    text-align: center;
    padding: 24px 32px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E8E9EA;
    margin: 0;
    letter-spacing: 0.3px;
}

/* LINKS TO EXTERNAL WEBSITES SECTION */
.external-links {
    background: #FFFFFF;
    padding: 80px 20px;
}

.external-links-container {
    max-width: 900px;
    margin: 0 auto;
}

.external-links-content {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #E8E9EA;
}

.external-links-text {
    font-size: 17px;
    font-weight: 400;
    color: #555555;
    line-height: 1.9;
    letter-spacing: 0.3px;
    margin: 0;
}

/* UPDATES TO THIS PRIVACY POLICY SECTION */
.policy-updates {
    background: #F8F9FA;
    padding: 80px 20px;
}

.policy-updates-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-updates-content {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #E8E9EA;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.policy-updates-text {
    font-size: 17px;
    font-weight: 400;
    color: #555555;
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin: 0 0 24px 0;
}

.policy-updates-date {
    font-size: 15px;
    font-weight: 500;
    color: #3A68B8;
    letter-spacing: 0.5px;
    margin: 0;
}

/* CONTACT INFORMATION SECTION */
.contact-info-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

.contact-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-content {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 50px 40px;
    border: 1px solid #E8E9EA;
}

.contact-intro {
    font-size: 18px;
    font-weight: 500;
    color: #444444;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
}

.contact-details {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid #E8E9EA;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    letter-spacing: 0.3px;
}

.contact-value {
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    letter-spacing: 0.3px;
}

.contact-link {
    font-size: 16px;
    font-weight: 400;
    color: #3A68B8;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-link:hover {
    color: #113768;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* TABLET LANDSCAPE - 1024px */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }

    .header-nav-left {
        gap: 24px;
    }

    .header-nav-right {
        gap: 24px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .storage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .storage-compliance {
        padding: 24px 30px;
    }
}

/* MOBILE MENU - 1024px and below */
@media (max-width: 1024px) {
    .header-menu {
        display: flex;
    }

    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 30px 40px;
        gap: 20px;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        align-items: flex-start;
    }

    .header-nav-left.active {
        transform: translateX(0);
    }

    .header-nav-right {
        top: auto;
        bottom: 0;
        transform: translateX(100%);
    }

    .header-nav-right.active {
        transform: translateX(0);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
        border: none;
    }

    .header-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* TABLET PORTRAIT - 768px */
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .header-menu {
        right: 20px;
    }

    .header-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .header-logo .h-letter {
        font-size: 1.5rem;
    }

    .header-logo .company-main {
        font-size: 0.9rem;
    }

    .header-logo .company-sub {
        font-size: 0.65rem;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .introduction,
    .how-we-use,
    .cookies-section,
    .external-links,
    .contact-info-section {
        padding: 50px 20px;
    }

    .info-collect,
    .sharing-info,
    .data-storage,
    .your-rights,
    .data-retention,
    .policy-updates {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        padding: 24px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-list li {
        font-size: 14px;
    }

    .numbered-item {
        gap: 16px;
        padding: 20px 0;
    }

    .number {
        font-size: 20px;
        min-width: 40px;
    }

    .item-text {
        font-size: 15px;
    }

    .sharing-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .sharing-content {
        padding: 28px 20px;
    }

    .sharing-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .sharing-list li {
        font-size: 14px;
        padding-left: 24px;
    }

    .sharing-note {
        font-size: 14px;
        padding: 16px;
    }

    .cookies-box {
        padding: 28px 20px;
    }

    .cookies-intro {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .cookies-list li {
        font-size: 14px;
        padding-left: 24px;
    }

    .cookies-note {
        font-size: 13px;
        padding-top: 16px;
    }

    .storage-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .storage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .storage-item {
        padding: 30px 20px;
    }

    .storage-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .storage-title {
        font-size: 16px;
    }

    .storage-compliance {
        font-size: 15px;
        padding: 20px 24px;
    }

    .rights-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 35px;
    }

    .rights-card {
        padding: 28px 20px;
    }

    .rights-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .rights-title {
        font-size: 15px;
    }

    .rights-footer {
        font-size: 15px;
        padding: 20px 24px;
    }

    .retention-intro {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .retention-content {
        padding: 28px 20px;
        margin-bottom: 30px;
    }

    .retention-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 0;
    }

    .retention-label,
    .retention-value {
        font-size: 15px;
    }

    .retention-footer {
        font-size: 15px;
        padding: 20px 24px;
    }

    .external-links-content {
        padding: 35px 24px;
    }

    .external-links-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .policy-updates-content {
        padding: 35px 24px;
    }

    .policy-updates-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .policy-updates-date {
        font-size: 14px;
    }

    .contact-info-content {
        padding: 35px 24px;
    }

    .contact-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-details {
        padding: 24px 20px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 0;
    }

    .contact-label,
    .contact-value,
    .contact-link {
        font-size: 15px;
    }

    .main-footer {
        padding: 40px 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 32px;
    }

    .footer-column {
        gap: 16px;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-contact {
        gap: 14px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

/* MOBILE PORTRAIT - 480px */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
    }

    .header-menu {
        right: 15px;
        width: 24px;
        height: 24px;
        gap: 5px;
    }

    .header-logo .logo-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .header-logo .h-letter {
        font-size: 1.3rem;
    }

    .header-logo .company-main {
        font-size: 0.8rem;
    }

    .header-logo .company-sub {
        font-size: 0.6rem;
    }

    .header-nav-left,
    .header-nav-right {
        padding: 20px 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .container {
        padding: 0 15px;
    }

    .introduction,
    .how-we-use,
    .cookies-section,
    .external-links,
    .contact-info-section {
        padding: 40px 15px;
    }

    .info-collect,
    .sharing-info,
    .data-storage,
    .your-rights,
    .data-retention,
    .policy-updates {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .effective-date {
        font-size: 12px;
    }

    .introduction-text {
        font-size: 14px;
    }

    .info-card {
        padding: 20px 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .numbered-item {
        gap: 12px;
        padding: 16px 0;
    }

    .number {
        font-size: 18px;
        min-width: 35px;
    }

    .item-text {
        font-size: 14px;
    }

    .sharing-intro {
        font-size: 15px;
    }

    .sharing-content {
        padding: 24px 16px;
    }

    .sharing-subtitle {
        font-size: 14px;
    }

    .sharing-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .sharing-note {
        font-size: 13px;
        padding: 14px;
    }

    .cookies-box {
        padding: 24px 16px;
    }

    .cookies-intro {
        font-size: 14px;
    }

    .cookies-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .cookies-note {
        font-size: 12px;
    }

    .storage-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .storage-item {
        padding: 24px 16px;
    }

    .storage-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .storage-title {
        font-size: 15px;
    }

    .storage-compliance {
        font-size: 14px;
        padding: 18px 20px;
    }

    .rights-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .rights-card {
        padding: 24px 16px;
    }

    .rights-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .rights-title {
        font-size: 14px;
    }

    .rights-footer {
        font-size: 14px;
        padding: 18px 20px;
    }

    .retention-intro {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .retention-content {
        padding: 24px 16px;
    }

    .retention-item {
        padding: 14px 0;
    }

    .retention-label,
    .retention-value {
        font-size: 14px;
    }

    .retention-footer {
        font-size: 14px;
        padding: 18px 20px;
    }

    .external-links-content {
        padding: 30px 20px;
    }

    .external-links-text {
        font-size: 14px;
    }

    .policy-updates-content {
        padding: 30px 20px;
    }

    .policy-updates-text {
        font-size: 14px;
    }

    .policy-updates-date {
        font-size: 13px;
    }

    .contact-info-content {
        padding: 30px 20px;
    }

    .contact-intro {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .contact-details {
        padding: 20px 16px;
    }

    .contact-item {
        padding: 12px 0;
    }

    .contact-label,
    .contact-value,
    .contact-link {
        font-size: 14px;
    }

    .main-footer {
        padding: 30px 15px 0;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-description,
    .footer-links li a,
    .footer-contact li {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ============================================
   EXTRA LARGE SCREENS - 1440px and above
   ============================================ */
@media (min-width: 1440px) {
    .container,
    .hero-container,
    .introduction-container,
    .info-collect-container,
    .how-we-use-container,
    .sharing-info-container,
    .cookies-container,
    .data-storage-container,
    .your-rights-container,
    .data-retention-container,
    .external-links-container,
    .policy-updates-container,
    .contact-info-container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 42px;
    }

    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .storage-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .rights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   SMALL TABLET LANDSCAPE - 600px to 900px
   ============================================ */
@media (min-width: 600px) and (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .storage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 38px;
    }

    .section-title {
        font-size: 30px;
    }
}

/* ============================================
   VERY SMALL MOBILE - 320px to 375px
   ============================================ */
@media (max-width: 375px) {
    .hero {
        padding: 35px 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .info-card,
    .sharing-content,
    .cookies-box,
    .storage-item,
    .rights-card,
    .retention-content,
    .external-links-content,
    .policy-updates-content,
    .contact-info-content {
        padding: 18px 14px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-list li,
    .numbered-item .item-text,
    .sharing-list li,
    .cookies-list li {
        font-size: 12px;
    }

    .number {
        font-size: 16px;
        min-width: 30px;
    }

    .storage-icon,
    .rights-icon {
        font-size: 30px;
    }

    .footer-container {
        gap: 24px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }
}

/* ============================================
   LANDSCAPE ORIENTATION
   ============================================ */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .info-collect,
    .sharing-info,
    .data-storage,
    .your-rights,
    .data-retention,
    .policy-updates {
        padding: 50px 20px;
    }

    .section-title {
        margin-bottom: 30px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Hide navigation and footer */
    .navbar,
    .main-footer,
    .back-to-top,
    .print-policy-btn,
    .footer-social {
        display: none !important;
    }

    /* Page setup */
    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Ensure proper page breaks */
    .hero,
    .introduction,
    .info-collect,
    .how-we-use,
    .sharing-info,
    .cookies-section,
    .data-storage,
    .your-rights,
    .data-retention,
    .external-links,
    .policy-updates,
    .contact-info-section {
        page-break-inside: avoid;
        padding: 20px 0;
    }

    .section-title {
        font-size: 18pt;
        page-break-after: avoid;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 24pt;
        margin-bottom: 10px;
    }

    .info-card,
    .rights-card,
    .numbered-item {
        page-break-inside: avoid;
        border: 1px solid #ddd;
        padding: 10px;
        margin-bottom: 10px;
    }

    /* Show URLs after links */
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
        color: #666;
    }

    /* Optimize grid layouts for print */
    .cards-grid,
    .storage-grid,
    .rights-grid {
        display: block;
    }

    .info-card,
    .storage-item,
    .rights-card {
        margin-bottom: 15px;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */
@media (prefers-contrast: high) {
    .hero {
        background: #FFFFFF;
        border-bottom: 3px solid #000000;
    }

    .hero-title,
    .section-title {
        color: #000000;
    }

    .info-card,
    .sharing-content,
    .cookies-box,
    .storage-item,
    .rights-card {
        border: 2px solid #000000;
    }

    .nav-link,
    .contact-link {
        text-decoration: underline;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .info-card:hover,
    .storage-item:hover,
    .rights-card:hover {
        transform: none;
    }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e0e0e0;
    }

    .hero {
        background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
        border-bottom-color: #333333;
    }

    .hero-title,
    .section-title {
        color: #5a9adb;
    }

    .hero-subtitle,
    .introduction-text,
    .item-text,
    .sharing-note,
    .cookies-note,
    .external-links-text,
    .policy-updates-text {
        color: #b0b0b0;
    }

    .info-collect,
    .sharing-info,
    .data-storage,
    .data-retention {
        background: #1f1f1f;
    }

    .introduction,
    .how-we-use,
    .cookies-section,
    .your-rights,
    .external-links,
    .policy-updates,
    .contact-info-section {
        background: #252525;
    }

    .info-card,
    .sharing-content,
    .cookies-box,
    .storage-item,
    .rights-card,
    .retention-content,
    .external-links-content,
    .policy-updates-content,
    .contact-details {
        background: #2a2a2a;
        border-color: #404040;
    }

    .card-title,
    .sharing-subtitle,
    .cookies-intro,
    .storage-title,
    .rights-title,
    .retention-label,
    .contact-label {
        color: #5a9adb;
    }

    .card-list li,
    .sharing-list li,
    .cookies-list li {
        color: #b0b0b0;
    }

    .contact-link {
        color: #5a9adb;
    }

    .contact-link:hover {
        color: #7ab4e8;
    }

    .storage-compliance,
    .retention-footer,
    .rights-footer {
        background: #2a2a2a;
        border-color: #404040;
        color: #b0b0b0;
    }

    .social-link {
        background: rgba(90, 154, 219, 0.2);
    }

    .social-link:hover {
        background: #3A68B8;
    }
}