﻿/*=================pricing-section==============================*/

.pricing-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: auto;
    padding: 2rem 1rem;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

.pricing-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Plan Card */
.plan-card {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

    .plan-card:hover {
        transform: translateY(-5px);
    }

/* Header */
.plan-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00ffd1;
}

.month {
    font-size: 1rem;
    color: #ccc;
    margin-left: 5px;
}

/* Description */
.plan-description {
    margin: 1rem 0;
    color: #aaa;
}

/* CTA Button */
.cta-button1 {
    background-color: #00ffd1;
    color: #000;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1.5rem;
}

.pph2 {
    text-align: center;
    margin-bottom: 56px;
    margin-top: 10px;
    font-family: fangsong;
    font-size: xxx-large;
    color: #00ffd1;
}

.cta-button1:hover {
    background-color: #00bfa6;
}

/* Features List */
.features-list {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

    .features-list li {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
    }

.check {
    color: #00ffd1;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.cross-icon {
    color: #00ffd1;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
/* Responsive */
@media (max-width: 960px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 90%;
        max-width: 400px;
    }
}
/*_______________cta section__________________*/
.cta-section {
    background: linear-gradient(135deg, #004aad, #0075ff);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #ffffff;
    color: #004aad;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .cta-button:hover {
        background-color: #e5e5e5;
    }

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 15px;
}

/*---------------faq------------------*/
.faq-section {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-answer {
    display: none;
    padding: 0 15px 15px;
    color: #555;
    font-size: 1rem;
}
