/* Base Styles */
html {
    overflow-y: scroll;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #434357 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.header-right {
    display: flex;
    align-items: center;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.line {
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.privacy-hero {
    background: #434357;
    padding: 8rem 6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    max-width: 100%;
    margin: 0 0 0 0;
    min-height: 45vh;
}

.privacy-hero-left h1 {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    margin-top: 4rem;
}

/* Policy Content Container */
.policy-content {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Policy Sections with Better Text Alignment */
.policy-section {
    padding: 4rem 6rem;
    margin: 0;
}

/* Odd sections - FloralWhite background */
.policy-section:nth-child(odd) {
    background-color: floralwhite;
}

/* Even sections - #434357 background */
.policy-section:nth-child(even) {
    background-color: #434357;
    color: #ffffff;
}

/* Headings with better spacing */
.policy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 0;
    letter-spacing: 0.02em;
    max-width: 1200px;
}

.policy-section:nth-child(odd) h2 {
    color: #434357;
}

.policy-section:nth-child(even) h2 {
    color: #ffffff;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
    max-width: 1200px;
}

.policy-section:nth-child(odd) h3 {
    color: #2c2c2c;
}

.policy-section:nth-child(even) h3 {
    color: #f0f0f0;
}

/* Paragraphs with better readability */
.policy-section p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    max-width: 1200px;
    text-align: justify;
    text-justify: inter-word;
}

.policy-section:nth-child(odd) p {
    color: #2c2c2c;
}

.policy-section:nth-child(even) p {
    color: #e8e8e8;
}

/* Lists with better spacing */
.policy-section ul {
    margin: 1.5rem 0 2rem 0;
    padding-left: 2.5rem;
    max-width: 1200px;
}

.policy-section li {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
}

.policy-section:nth-child(odd) li {
    color: #2c2c2c;
}

.policy-section:nth-child(even) li {
    color: #e8e8e8;
}

/* Strong text */
.policy-section strong {
    font-weight: 600;
}

.policy-section:nth-child(odd) strong {
    color: #434357;
}

.policy-section:nth-child(even) strong {
    color: #ffffff;
}

/* Links */
.policy-section a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-section:nth-child(odd) a {
    color: #434357;
    border-bottom-color: #434357;
}

.policy-section:nth-child(odd) a:hover {
    color: #2c2c40;
    border-bottom-color: #2c2c40;
}

.policy-section:nth-child(even) a {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.policy-section:nth-child(even) a:hover {
    color: #f0f0f0;
    border-bottom-color: #f0f0f0;
}

/* Read More Container - Now Fixed/Floating */
.read-more-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: transparent;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    z-index: 999;
}

/* Read More Button - Floating Style */
.read-more-btn {
    background-color: transparent; /* Royal Blue transparent */
    color: #4169E1; /* Royal Blue text */
    border: 2px solid #4169E1; /* Royal Blue border */
    padding: 0.75rem 1.8rem; /* Compact size */
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px; /* Rectangle with slight rounded corners */
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.2);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
}

.read-more-btn:hover {
    background-color: #4169E1; /* Solid Royal Blue on hover */
    color: #ffffff; /* White text on hover */
    border-color: #4169E1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(65, 105, 225, 0.35);
}

.read-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(65, 105, 225, 0.3);
}

/* Hidden Content with Peek Effect */
.hidden-content {
    max-height: 350px;
    /* Thoda content peek karega */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-out;
}

/* Gradient overlay for peek effect */
.hidden-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom,
            rgba(255, 250, 240, 0) 0%,
            rgba(255, 250, 240, 0.7) 50%,
            floralwhite 100%);
    pointer-events: none;
    z-index: 1;
}

.hidden-content.show {
    max-height: 15000px;
    transition: max-height 1.5s ease-in;
}

.hidden-content.show::after {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Hide button when content is visible */
.read-more-container.hide {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer {
    background: #434357 !important;
}
.f-social-icon {
    border: 1.5px solid #434357 !important;
}
.f-social-icon:hover {
    color: #434357 !important;
}


/* Footer */
footer {
    background-color: #434357;
    color: #ffffff;
    text-align: center;
    padding: 3rem 6rem;
    margin: 0;
}

footer p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Selection Color */
::selection {
    background-color: #434357;
    color: #ffffff;
}

::-moz-selection {
    background-color: #434357;
    color: #ffffff;
}

/* Responsive Design */
/* ===== RESPONSIVE DESIGN ===== */

/* 5. LARGE SCREENS (1921px+) */
@media screen and (min-width: 1921px) {
    .header {
        padding: 2rem 8rem;
    }

    .logo {
        font-size: 2.2rem;
    }

    .line {
        width: 32px;
        height: 3.5px;
    }

    .privacy-hero {
        padding: 10rem 8rem 3rem;
        min-height: 50vh;
        gap: 5rem;
    }

    .privacy-hero-left h1 {
        font-size: 4.5rem;
        margin-top: 5rem;
    }

    .policy-section {
        padding: 5rem 8rem;
    }

    .policy-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
        max-width: 1400px;
    }

    .policy-section h3 {
        font-size: 1.7rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
        max-width: 1400px;
    }

    .policy-section p {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
        line-height: 1.8;
        max-width: 1400px;
    }

    .policy-section ul {
        margin: 2rem 0 2.5rem 0;
        padding-left: 3rem;
        max-width: 1400px;
    }

    .policy-section li {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .read-more-container {
        bottom: 2.5rem;
        right: 2.5rem;
    }

    .read-more-btn {
        padding: 1rem 2.5rem;
        font-size: 1.15rem;
        border-radius: 8px;
    }

    .hidden-content {
        max-height: 450px;
    }

    .hidden-content::after {
        height: 130px;
    }

    footer {
        padding: 4rem 8rem;
    }

    footer p {
        font-size: 1.15rem;
    }

    .last-updated {
        font-size: 1.05rem;
    }
}

/* 2. STANDARD DESKTOP (1367px - 1920px) */
@media screen and (min-width: 1367px) and (max-width: 1920px) {
    .header {
        padding: 1.7rem 7rem;
    }

    .logo {
        font-size: 1.9rem;
    }

    .privacy-hero {
        padding: 9rem 7rem 2.5rem;
        min-height: 48vh;
    }

    .privacy-hero-left h1 {
        font-size: 4rem;
        margin-top: 4.5rem;
    }

    .policy-section {
        padding: 4.5rem 7rem;
    }

    .policy-section h2 {
        font-size: 2.2rem;
        max-width: 1300px;
    }

    .policy-section h3 {
        font-size: 1.5rem;
        max-width: 1300px;
    }

    .policy-section p {
        font-size: 1.1rem;
        max-width: 1300px;
    }

    .policy-section ul {
        max-width: 1300px;
    }

    .policy-section li {
        font-size: 1.1rem;
    }

    footer {
        padding: 3.5rem 7rem;
    }
}

/* 1. LAPTOP / HALF SCREEN (1025px - 1366px) - FIXED */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .header {
        padding: 1.5rem 6rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .privacy-hero {
        padding: 8rem 6rem 2rem;
        min-height: 45vh;
    }

    .privacy-hero-left h1 {
        font-size: 3.5rem;
        margin-top: 4rem;
    }

    .policy-section {
        padding: 4rem 6rem;
    }

    .policy-section h2 {
        font-size: 2rem;
    }

    .policy-section h3 {
        font-size: 1.4rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1.05rem;
    }

    .read-more-container {
        bottom: 2rem;
        right: 2rem;
    }

    .read-more-btn {
        padding: 0.75rem 1.8rem;
        font-size: 1rem;
    }

    .hidden-content {
        max-height: 350px;
    }

    footer {
        padding: 3rem 6rem;
    }
}

/* 3. TABLET (769px - 900px) */
@media screen and (min-width: 769px) and (max-width: 900px) {
    .header {
        padding: 1.4rem 4rem;
    }

    .logo {
        font-size: 1.6rem;
    }

    .line {
        width: 26px;
    }

    .privacy-hero {
        padding: 7rem 4rem 2rem;
        min-height: 40vh;
        flex-direction: column;
        gap: 2.5rem;
    }

    .privacy-hero-left h1 {
        font-size: 3rem;
        margin-top: 2rem;
    }

    .policy-section {
        padding: 3.5rem 4rem;
    }

    .policy-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
        margin-top: 2.2rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1.02rem;
    }

    .policy-section ul {
        padding-left: 2rem;
    }

    .read-more-container {
        bottom: 1.8rem;
        right: 1.8rem;
    }

    .read-more-btn {
        padding: 0.85rem 1.9rem;
        font-size: 0.98rem;
    }

    .hidden-content {
        max-height: 300px;
    }

    .hidden-content::after {
        height: 100px;
    }

    footer {
        padding: 2.8rem 4rem;
    }

    footer p {
        font-size: 0.98rem;
    }
}

/* 4. MOBILE LAYOUT (< 768px) */
@media screen and (max-width: 768px) {
    .header {
        padding: 1.2rem 2rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .line {
        width: 25px;
        height: 2.5px;
    }

    .privacy-hero {
        padding: 6rem 2rem 1.5rem;
        min-height: 35vh;
        flex-direction: column;
        gap: 2rem;
    }

    .privacy-hero-left h1 {
        font-size: 2.2rem;
        margin-left: 0;
        margin-top: 1.5rem;
    }

    .policy-section {
        padding: 2.5rem 2rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .policy-section ul {
        padding-left: 1.5rem;
        margin: 1.3rem 0 1.8rem 0;
    }

    .policy-section li {
        margin-bottom: 1rem;
    }

    .read-more-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .read-more-btn {
        padding: 0.8rem 1.7rem;
        font-size: 0.95rem;
    }

    .hidden-content {
        max-height: 220px;
    }

    .hidden-content::after {
        height: 110px;
    }

    footer {
        padding: 2rem 2rem;
    }

    footer p {
        font-size: 0.95rem;
    }

    .last-updated {
        font-size: 0.88rem;
    }
}

/* 4.1 SMALL PHONES (< 480px) */
@media screen and (max-width: 480px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .line {
        width: 24px;
        height: 2.5px;
        gap: 4px;
    }

    .privacy-hero {
        padding: 5rem 1.5rem 1rem;
        min-height: 30vh;
        gap: 1.5rem;
    }

    .privacy-hero-left h1 {
        font-size: 1.8rem;
        margin-top: 1rem;
    }

    .policy-section {
        padding: 2rem 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
        margin-bottom: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
        margin-top: 1.8rem;
        margin-bottom: 0.9rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .policy-section ul {
        padding-left: 1.3rem;
        margin: 1.2rem 0 1.6rem 0;
    }

    .policy-section li {
        margin-bottom: 0.9rem;
    }

    .read-more-container {
        bottom: 1.2rem;
        right: 1.2rem;
    }

    .read-more-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 5px;
    }

    .hidden-content {
        max-height: 180px;
    }

    .hidden-content::after {
        height: 90px;
    }

    footer {
        padding: 1.5rem 1.5rem;
    }

    footer p {
        font-size: 0.9rem;
    }

    .last-updated {
        font-size: 0.85rem;
    }
}