/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-intro h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.pricing-intro p {
    font-size: 16px;
    color: #666666;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: #1a5f4a;
    box-shadow: 0 8px 24px rgba(26, 95, 74, 0.15);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: #1a5f4a;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.05) 0%, rgba(45, 134, 89, 0.05) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(26, 95, 74, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #1a5f4a;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 700;
}

.pricing-subtitle {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f4a;
}

.period {
    font-size: 13px;
    color: #666666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===== Included Section ===== */
.included-section {
    background-color: #f5f5f0;
    padding: 80px 20px;
}

.included-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.included-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.included-card h3 {
    font-size: 18px;
    color: #1a5f4a;
    margin-bottom: 12px;
    font-weight: 600;
}

.included-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 20px;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 16px;
    color: #1a5f4a;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

/* ===== CTA Final ===== */
.cta-final {
    background: linear-gradient(135deg, #1a5f4a 0%, #2d8659 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.cta-final p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
    background-color: white;
    color: #1a5f4a;
    font-weight: 700;
}

.btn-lg:hover {
    background-color: #f5f5f0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-intro h2 {
        font-size: 28px;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .cta-final h2 {
        font-size: 28px;
    }
}
