.why-choose-us {

    padding: 80px 20px;
    text-align: center;
}

.why-choose-us__title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.why-choose-us__subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-us__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 40px;
    color: #007bff;
    background: linear-gradient(135deg, #007bff, rgb(94, 19, 141));
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: #353535;
    line-height: 1.5;
}

.cta-button {
    margin-top: 20px;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(94, 19, 141), #0056b3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-link i {
    margin-right: 8px;
}

.cta-link:hover {
    background: linear-gradient(135deg, #0056b3, #003f8a);
}

@media (max-width: 768px) {
    .why-choose-us__title {
        font-size: 28px;
    }

    .why-choose-us__subtitle {
        font-size: 16px;
    }

    .why-choose-us__grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%;
    }
}






.mission-values {

    padding: 80px 20px;
    text-align: center;
}

.mission-values__title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.mission-values__subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.mission-values__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.mission-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 260px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    font-size: 40px;
    color: #007bff;
    background: linear-gradient(135deg, rgb(94, 19, 141), #0056b3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
}

.mission-title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.mission-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .mission-values__title {
        font-size: 28px;
    }

    .mission-values__subtitle {
        font-size: 16px;
    }

    .mission-values__grid {
        flex-direction: column;
        align-items: center;
    }

    .mission-card {
        width: 90%;
    }
}




.seo-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.container {
    max-width: 100%;
}

.seo-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.seo-intro {
    font-size: 18px;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.seo-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.seo-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.seo-card.reverse {
    flex-direction: row-reverse;
}

.seo-text {
    flex: 1;
    padding: 20px;
    max-width: 50%;
}

.seo-text h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.seo-text p, .seo-text ul {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.seo-text ul {
    list-style: none;
    padding: 0;
}

.seo-text ul li {
    font-size: 16px;
    color: #444;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.seo-text ul li::before {
    content: "✔";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seo-image {
    flex: 1;
    position: relative;
    max-width: 20%;
    overflow: hidden;
}

.seo-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.seo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}


@media (max-width: 768px) {
    .seo-title {
        font-size: 28px;
    }

    .seo-intro {
        font-size: 16px;
    }

    .seo-card {
        flex-direction: column;
        text-align: center;
    }

    .seo-card.reverse {
        flex-direction: column;
    }

    .seo-text, .seo-image {
        max-width: 100%;
    }

    .seo-text h3 {
        font-size: 22px;
    }

    .seo-text p {
        font-size: 14px;
    }

    .seo-text ul li {
        font-size: 14px;
    }
}
