/* ===== Conditions Page (VOP) ===== */

.conditions-page {
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 0 20px;
}

/* Hero */
.conditions-hero {
    position: relative;
    text-align: center;
    padding: 56px 20px 48px;
    color: white;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}
.conditions-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-dark) 0%, #302b63 50%, #24243e 100%);
    z-index: 0;
}
.conditions-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 60%);
    z-index: 1;
}
.conditions-hero-content {
    position: relative;
    z-index: 2;
}
.conditions-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.conditions-hero-content h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    line-height: 1.2;
}
.conditions-hero-content p {
    font-size: 1.05rem;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .conditions-hero { padding: 40px 20px 36px; }
    .conditions-hero-content h1 { font-size: 1.5rem; }
    .conditions-hero-icon { font-size: 2rem; }
}

/* Container */
.conditions-container {
    margin-top: -24px;
    position: relative;
    z-index: 10;
}

/* Card */
.conditions-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 40px 36px;
}

.conditions-last-updated {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

/* Sections */
.conditions-section {
    margin-bottom: 32px;
}

.conditions-section:last-child {
    margin-bottom: 0;
}

.conditions-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
}

.conditions-section p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.conditions-section a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

.conditions-section a:hover {
    text-decoration: underline;
}

/* Lists */
.conditions-list {
    margin: 0 0 16px;
    padding-left: 24px;
}

.conditions-list li {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 6px;
}

.conditions-list li:last-child {
    margin-bottom: 0;
}

.conditions-list li strong {
    color: #333;
}

/* Responsive */
@media (max-width: 640px) {
    .conditions-card {
        padding: 28px 20px;
    }

    .conditions-section h2 {
        font-size: 1.1rem;
    }

    .conditions-section p,
    .conditions-list li {
        font-size: 0.9rem;
    }
}
