/* Privacy Policy Page Styles (Based on How To Buy) */

.policy-section {
    padding: 2rem 0;
}

/* Page Title */
.policy-title {
    font-size: 2rem;
    color: #000000CC;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.policy-title small {
    display: block;
    font-size: 1.3rem;
    color: #30734C;
    margin-top: 0.5rem;
}

/* Intro Section */
.policy-intro {
    background: linear-gradient(135deg, rgba(48, 115, 76, 0.08) 0%, rgba(48, 115, 76, 0.04) 100%);
    border: 2px solid #E0E9FF;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.intro-text {
    color: #344863;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.policy-intro a {
    color: #30734C;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.policy-intro a:hover {
    color: #245c3b;
    text-decoration: underline;
}

/* Step Container */
.policy-step {
    background: #fff;
    border: 2px solid #F3F5FA;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Step Header */
.step-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F3F5FA;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #30734C 0%, #4a9e6a 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    color: #344863;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    margin-top: 0.5rem;
}

/* Step List */
.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-list li {
    color: #344863;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 2rem;
    position: relative;
}

/* Green Bullet Points */
.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #30734C;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5rem;
    top: 2px;
}

.step-list strong {
    color: #30734C;
    font-weight: 700;
}

.step-list a {
    color: #30734C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-list a:hover {
    color: #245c3b;
    text-decoration: underline;
}

/* Sub-sections (for section 4) */
.sub-section {
    background: #FAFBFF;
    border: 1px solid #EAEFF5;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sub-section h4 {
    font-size: 1.1rem;
    color: #30734C;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sub-section p {
    color: #344863;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.data-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #D1D9E6;
}

.data-details p {
    margin-bottom: 0.75rem;
}

.data-details strong {
    color: #344863;
    font-weight: 700;
}

.data-details em {
    color: #30734C;
    font-style: normal;
    font-weight: 600;
}

.sub-divider {
    border: 0;
    border-top: 1px dashed #D1D9E6;
    margin: 1rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .policy-intro {
        padding: 1.5rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .policy-step {
        padding: 1.5rem;
    }

    .step-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.1rem;
        margin-top: 0;
    }

    .step-list li {
        font-size: 0.95rem;
    }
    
    .sub-section {
        padding: 1rem;
    }
}