/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.pricing-title-section h1 {
    font-size: 36px;
    color: #1a237e;
    font-weight: 700;
    margin: 0;
}

.pricing-title-section h2 {
    font-size: 20px;
    color: #64ffda;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: #e8f5e9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 1px solid #e0e0e0;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -1px;
    background: #4caf50;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    right: -16px;
    top: 10px;
    padding: 15px 5px;
    border-radius: 5px 0px 0px 5px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 20px;
}

.price-reveal {
    background: #d5d52b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    cursor: pointer;
}

.price-reveal:hover {
    background: #b8b825;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #4caf50;
    margin-right: 10px;
}

.select-package-btn {
    background: #d5d52b;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.select-package-btn:hover {
    background: #b8b825;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.benefit-box {
    background: transparent;
    color: #212529;
    border: 1px solid #dee2e6;
    padding: 30px;
    border-radius: 10px;
}

.benefit-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.benefit-box h3 i {
    margin-right: 10px;
}

.benefit-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-box ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.benefit-box ul li i {
    color: #d5d52b;
    margin-right: 10px;
}

/* Investment Section */
.investment-section {
    padding: 60px 0;
    background: #f1f8e9;
}

.investment-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.investment-box h2 {
    text-align: center;
    color: #1a237e;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 18px;
}

.price-row:last-child {
    border-bottom: none;
}

.price-reveal-btn {
    background: #d5d52b;
    color: #fff;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.enroll-section {
    text-align: center;
    margin-top: 30px;
}

.enroll-btn-large {
    background: #d5d52b;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.enroll-btn-large:hover {
    background: #b8b825;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

@media (max-width: 1199px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
