/* Content Pages Styles (Privacy Policy & Terms & Conditions) */

body {
    min-height: 100vh;
    padding-bottom: 80px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 60px 40px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    margin-bottom: 15px;
}

.page-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #ffffff, #e5f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.effective-date {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Content Card */
.content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e2e8f0;
}

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

.content strong {
    color: white;
    font-weight: 700;
}

/* Section Titles (for Terms & Conditions) */
.section-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.section-title:first-child {
    margin-top: 0;
}

/* Override footer for content pages */
.footer-content {
    max-width: 900px;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px 60px 20px;
    }

    .content {
        padding: 30px 25px;
    }

    .content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px 60px 15px;
    }

    .content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .section-title {
        font-size: 1rem;
    }
}
