/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #000000;
    --text-primary: #FFFFFF;
    --text-secondary: #BDD6DA;
    --text-muted: #7A8C90;
    --text-dark: #121212;
    --accent-primary: #9DD6E2;
    --accent-secondary: #A3DFEC;
    --banner-bg: linear-gradient(90deg, #96D4DF 0%, #8DD4DA 100%);
    --banner-text: #2A5A61;
    --banner-link: #1A4A50;
    --nav-bg: rgba(0, 0, 0, 0.8); /* Semi-transparent black for nav */
    --button-bg: #9DD6E2; /* Teal for download button */
    --button-hover: #8DD4DA; /* Slightly darker teal for hover */
    --explore-btn-bg-transparent: transparent; /* Transparent for explore button */
    --explore-btn-border: var(--text-primary); /* White border for explore button */
    --explore-btn-hover-bg: rgba(255, 255, 255, 0.1); /* Slight white overlay on hover */
    --contact-bg: linear-gradient(135deg, #1A3A42 0%, #0A1A1F 100%);
    --contact-border: rgba(163, 223, 236, 0.2);
    --email-btn-bg: linear-gradient(135deg, #B8D6DA 0%, #79AAB1 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-brand: 'Apple SD Gothic Neo', sans-serif; /* As specified in original CSS */
    --font-space: 'Space Grotesk', sans-serif; /* For specific headings if needed */
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6; /* Slightly increased line-height for better readability */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below images */
}

button {
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    border: none;
    font-family: var(--font-primary);
}

/* Header Banner */
.header-banner {
    background: var(--banner-bg);
    padding: 10px 15px; /* Increased padding slightly */
    text-align: center;
    position: relative;
    z-index: 1000;
}

.banner-text {
    font-weight: 500;
    font-size: 14px;
    color: var(--banner-text);
    margin-right: 16px;
}

.banner-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--banner-link);
    text-decoration: underline;
}

/* Hero Container & Background */
.hero-container {
    position: relative;
    width: 100%;
    background-color: var(--primary-bg); /* Ensure background color */
    overflow: hidden;
    padding-bottom: 100px; /* Increased padding for more space after laptop */
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Navigation */
.navigation {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px; /* Max width for content */
    margin: 0 auto;
    padding: 50px 20px 0 20px; /* Increased top padding slightly */
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    background: linear-gradient(180deg, rgba(62, 69, 70, 0.1) 5%, rgba(62, 69, 70, 0.1) 5%);
    backdrop-filter: blur(70px); /* Glassmorphism effect */
    border-radius: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 30px;
    position: relative; /* Added for absolute positioning context */
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px; /* Increased gap */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 45px;
    height: 45px;
    border-radius: 12px;
}

.brand-name {
    font-family: var(--font-brand);
    font-weight: 500;
    font-size: 24px;
    color: var(--text-secondary);
    line-height: 1; /* Adjust line height to prevent cutting off */
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-primary);
    padding: 10px 0; /* Add some padding for easier clicking */
}

.dropdown-icon {
    width: 16px;
    height: 16px;
}

.download-btn {
    background: var(--button-bg);
    border-radius: 24px;
    padding: 10px 30px; /* Slightly increased padding */
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.download-btn:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

/* Hero Content - Minimal Spacing */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding-top: 0px; /* Further reduced from 30px */
    width: 100%;
    max-width: 715px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-header-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 15px;
    color: var(--text-primary);
    margin-top: -80px; /* Aggressive negative margin to overlay on image */
    margin-bottom: 35px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 10; /* Ensure text is above image */
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Reduced from 20px */
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.explore-btn {
    background: transparent;
    border-radius: 23px;
    padding: 10px 30px; /* Slightly reduced padding */
    font-weight: 600;
    font-size: 15px; /* Slightly reduced font size */
    color: var(--text-primary);
}

.explore-btn:hover {
    background: var(--explore-btn-hover-bg);
    border-color: var(--text-secondary);
}

.apple-store-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.apple-store-btn:hover {
    transform: translateY(-2px);
}

.apple-store-svg {
    width: 290px; /* Reduced from 290px to match screenshot */
    height: auto;
}

/* Laptop Container - Much Bigger */
.laptop-container {
    margin: 30px auto 50px auto;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px; /* Significantly increased container width */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.laptop-image {
    width: 120%; /* Make image larger than container */
    max-width: 1100px; /* Significantly increased max-width */
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (max-width: 1200px) {
    .laptop-image {
        width: 110%;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .laptop-container {
        max-width: 100%;
    }
    
    .laptop-image {
        width: 100%;
        max-width: 100%;
    }
}

/* Info Cards - Reduced bottom spacing */
.info-cards {
    position: relative;
    display: flex;
    gap: 30px;
    padding: 40px 20px 0; /* Removed bottom padding */
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    margin: 0 auto 0; /* Removed bottom margin */
    z-index: 4;
    flex-wrap: wrap;
}

.info-card {
    width: 223px; /* Keep original width or adjust if needed */
    height: 157px; /* Keep original height or adjust if needed */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* background-color: rgba(134, 181, 192, 0.1); Optional: subtle bg for cards */
    /* border-radius: 12px; Optional: rounded corners for cards if not in SVG */
}

.card-svg {
    width: 100%;
    height: 100%;
}

/* Create Stunning Videos Section - Extremely reduced spacing */
.stunning-videos-section {
    position: relative;
    padding: 0 20px 80px;
    text-align: center;
    max-width: 1065px;
    margin: 0 auto;
    margin-top: -20px;
}

/* Adjust the stunning videos image */
.stunning-videos-image {
    margin: 0 auto 0; /* Removed bottom margin completely */
    display: block;
    position: relative;
    z-index: 1;
}

/* Apply extreme negative margin to the text */
.stunning-videos-text {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 785px;
    margin: -320px auto 0; /* Increased negative top margin to -120px */
    line-height: 1.8;
    position: relative;
    z-index: 2; /* Ensure text is above the image */
    padding-top: 150px; /* Increased padding to ensure text remains visible */
}

/* Media query adjustments */
@media (max-width: 768px) {
    .stunning-videos-text {
        margin-top: -100px; /* Slightly less negative margin on smaller screens */
        padding-top: 120px;
    }
}

@media (max-width: 480px) {
    .stunning-videos-text {
        margin-top: -80px; /* Even less negative margin on mobile */
        padding-top: 100px;
    }
}

/* Steps Container */
.steps-container {
    max-width: 1200px;
    margin: 80px auto 0 auto; /* Consistent top margin */
    padding: 0 20px;
}

.step-section {
    display: flex;
    align-items: center;
    gap: 70px; /* Increased gap */
    margin-bottom: 180px; /* Increased bottom margin for more separation */
    min-height: auto;
}

.step-section.reverse {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    max-width: 500px;
}

.step-title {
    font-weight: 700;
    font-size: 24px; /* Slightly larger */
    color: var(--text-secondary);
    margin-bottom: 20px; /* Increased margin */
}

.step-description {
    font-size: 15px; /* Slightly larger */
    line-height: 1.9;
    color: var(--text-muted);
}

.step-image {
    flex: 1;
    max-width: 600px;
}

.step-img {
    border-radius: 11px;
}

/* Contact Section */
.contact-section {
    padding: 100px 20px; /* Increased vertical padding */
    text-align: center;
    max-width: 537px;
    margin: 180px auto; /* Increased top/bottom margin */
    background: var(--contact-bg);
    border-radius: 12px;
    position: relative;
    border: 1px solid var(--contact-border);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-logo {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    margin: 0 auto 25px auto; /* Increased bottom margin */
}

.contact-title {
    font-weight: 600;
    font-size: 22px; /* Slightly larger */
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px; /* Increased margin */
}

.contact-subtitle {
    font-weight: 300;
    font-size: 13px; /* Slightly larger */
    line-height: 1.5;
    letter-spacing: -0.5px; /* Adjusted spacing */
    text-transform: uppercase;
    color: #A7CED5;
    margin-bottom: 35px; /* Increased margin */
}

.email-button {
    display: inline-block;
    background: var(--email-btn-bg);
    border-radius: 8px;
    padding: 14px 35px; /* Increased padding */
    font-weight: 600;
    font-size: 13px; /* Slightly larger */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 214, 218, 0.3);
}

/* Footer - Professional Layout */
.footer {
    background: var(--primary-bg);
    padding: 120px 40px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-brand {
    flex-shrink: 0;
    min-width: 200px;
    margin-right: 60px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    margin-bottom: 0; /* Removed bottom margin */
    display: inline-block; /* Changed from block to inline-block */
    vertical-align: middle; /* Align vertically */
}

.footer-brand-name {
    font-family: var(--font-brand);
    font-weight: 500;
    font-size: 20px;
    color: var(--text-secondary);
    display: inline-block; /* Changed from block to inline-block */
    margin-bottom: 0; /* Removed bottom margin */
    margin-left: 12px; /* Added left margin for spacing */
    line-height: 1.2;
    vertical-align: middle; /* Align vertically */
}

.footer-tagline {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.4;
    margin-top: 8px; /* Added top margin to separate from logo/name */
    display: block; /* Ensure it's on its own line */
    clear: both; /* Clear the float */
}

.footer-links {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 140px;
    flex-shrink: 0;
}

.footer-column h3 {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    font-size: 14px;
    color: #B7B7B7;
    transition: color 0.3s ease;
    line-height: 1.4;
    display: block;
}

.footer-column a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(45, 49, 66, 0.15);
    padding: 30px 0 0 0;
    text-align: left;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(184, 184, 184, 0.6);
    margin: 0;
}

/* Footer Responsive adjustments */
@media (max-width: 1200px) {
    .footer {
        padding: 100px 30px 40px 30px;
    }
    
    .footer-links {
        gap: 40px;
    }
    
    .footer-brand {
        margin-right: 40px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 80px 20px 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-brand {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 20px 20px;
    }
    
    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-column h3 {
        margin-bottom: 20px;
    }
    
    .footer-column li {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 50px 15px 20px 15px;
    }
    
    .footer-brand {
        text-align: center;
        width: 100%;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 25px 0 0 0;
    }
}

/* Responsive Design */

/* == Laptop & Large Screens (1201px and up) == */
@media (min-width: 1201px) {
    .header-background {
        width: 1463px; /* Fixed width from design */
    }
}

/* == Tablet Landscape & Small Laptops (992px to 1200px) == */
@media (max-width: 1200px) {
    .header-background {
        width: 100%; /* Allow it to scale down slightly */
    }
    .navigation {
        padding: 40px 20px 0 20px;
    }
    .nav-content {
        padding: 0 25px;
    }
    .nav-left {
        gap: 30px;
    }
    .nav-links {
        gap: 25px;
    }
    .hero-content {
        padding-top: 60px;
    }
    .hero-header-image {
        max-width: 650px;
    }
     .hero-subtitle {
        margin-bottom: 50px;
    }
    .hero-buttons {
        margin-bottom: 60px;
    }
    .laptop-image {
        max-width: 900px;
    }
    .info-cards {
        gap: 30px;
        margin-bottom: 70px;
    }
    .stunning-videos-section {
        padding: 100px 20px;
    }
    .step-section {
        gap: 50px;
        margin-bottom: 150px;
    }
    .contact-section {
        margin: 150px auto;
    }
    .footer-content {
        gap: 50px;
        margin-bottom: 80px;
    }
}

/* == Tablet Portrait (768px to 991px) == */
@media (max-width: 991px) {
    .header-background {
        height: 1000px;
        background: linear-gradient(180deg, #B8F2FF 0%, #000000 80%);
    }
    .nav-left {
        gap: 20px;
    }
    .nav-links {
        display: none; /* Hamburger menu would be needed here */
    }
    .hero-content {
        padding-top: 50px;
    }
    .hero-header-image {
        max-width: 500px;
    }
     .hero-subtitle {
        font-size: 17px;
        margin-bottom: 40px;
        margin-top: 20px;
    }
    .hero-buttons {
        margin-bottom: 50px;
    }
    .laptop-image {
        max-width: 650px;
    }
    .info-cards {
        justify-content: center;
        margin-bottom: 60px;
    }
    .stunning-videos-section {
        padding: 80px 20px;
    }
    .stunning-videos-text {
        font-size: 17px;
    }
    .step-section {
        flex-direction: column;
        text-align: center;
        margin-bottom: 120px; /* Adjusted for column layout */
        gap: 40px;
    }
    .step-section.reverse {
        flex-direction: column;
    }
    .step-content {
        max-width: 100%;
    }
    .step-image {
        max-width: 100%;
    }
    .step-description {
        text-align: center !important;
    }
    .footer-links {
        gap: 30px;
    }
}

/* == Mobile (up to 767px) == */
@media (max-width: 767px) {
    body {
        line-height: 1.5; /* Revert for smaller screens if 1.6 is too much */
    }
    .header-background {
        height: 800px;
        background: linear-gradient(180deg, #B8F2FF 0%, #000000 90%);
    }
    .navigation {
        padding-top: 30px;
    }
    .nav-content {
        flex-direction: row;
        height: auto;
        padding: 15px 20px; /* Adjusted padding */
        justify-content: space-between;
    }
    .nav-left {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    .logo-container {
        padding-left: 0;
    }
    .nav-logo {
        width: 40px;
        height: 40px;
    }
    .brand-name {
        font-size: 20px;
    }
    .hero-content {
        padding-top: 40px;
    }
    .hero-header-image {
        max-width: 90%;
    }
    .hero-subtitle {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 35px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    .explore-btn {
        padding: 10px 30px;
        font-size: 15px;
    }
    .apple-store-svg {
        width: 190px; /* Slightly smaller */
    }
    .laptop-container {
        margin-bottom: 60px;
    }
    .laptop-image {
        max-width: 95%;
    }
    .info-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px; /* Adjusted gap */
        margin-bottom: 50px;
    }
    .info-card {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    .stunning-videos-section {
        padding: 70px 20px;
    }
    .stunning-videos-text {
        font-size: 16px;
    }
    .step-section {
        margin-bottom: 100px;
        gap: 30px;
    }
    .step-title {
        font-size: 22px;
    }
    .step-description {
        font-size: 14px;
    }
    .contact-section {
        margin: 120px 20px;
        padding: 70px 20px;
    }
    .contact-title {
        font-size: 20px;
    }
    .footer {
        padding: 80px 20px 0 20px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        margin-bottom: 60px;
    }
    .footer-brand {
        margin-right: 0;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    .footer-column {
        min-width: auto;
        width: 100%;
    }
    .footer-column h3 {
        margin-bottom: 20px;
    }
    .footer-column li {
        margin-bottom: 18px;
    }
}

/* == Extra Small Mobile (up to 480px) == */
@media (max-width: 480px) {
    .header-background {
        height: 600px;
        background: linear-gradient(180deg, #B8F2FF 0%, #000000 100%);
    }
    .hero-subtitle {
        font-size: 15px;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .explore-btn {
        padding: 9px 25px;
        font-size: 14px;
    }
    .apple-store-svg {
        width: 180px;
    }
    .stunning-videos-text {
        font-size: 15px;
    }
    .step-description {
        font-size: 13px;
    }
    .download-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    .contact-title {
        font-size: 18px;
    }
    .contact-subtitle {
        font-size: 12px;
    }
    .email-button {
        padding: 12px 30px;
        font-size: 12px;
    }
}

/* Privacy Policy Styles */
.privacy-container {
    background-color: var(--primary-bg);
    min-height: 100vh;
    position: relative;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
    color: var(--text-primary);
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.privacy-title {
    font-family: var(--font-space);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

.privacy-body {
    line-height: 1.8;
}

.privacy-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(157, 214, 226, 0.1) 0%, rgba(141, 212, 218, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(157, 214, 226, 0.2);
}

.privacy-intro p {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}

.privacy-intro p:last-child {
    margin-bottom: 0;
}

.privacy-section {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-space);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.subsection {
    margin-bottom: 30px;
}

.subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.privacy-section p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-list li {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    line-height: 1.8;
}

.privacy-list li::before {
    content: "•";
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.privacy-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-link {
    color: var(--accent-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--accent-secondary);
}

.company-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 20px;
    font-size: 16px;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 15px 80px;
    }
    
    .privacy-title {
        font-size: 36px;
    }
    
    .privacy-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .subsection-title {
        font-size: 18px;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 15px;
    }
    
    .privacy-intro {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 10px 60px;
    }
    
    .privacy-title {
        font-size: 28px;
    }
    
    .privacy-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .subsection-title {
        font-size: 16px;
    }
    
    .privacy-section p,
    .privacy-list li {
        font-size: 14px;
    }
    
    .privacy-intro {
        padding: 15px;
    }
}
