.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a2540;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.hero img {
    width: 120px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: var(--font-xl);
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero h1 span {
    color: #4fd1c5;
}

.hero p {
    font-size: var(--font-l);
    margin-bottom: var(--section-margin6)!important;
    color: #e0e6ed;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    font-size: var(--font-x);
}

.cta-button {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: #4fd1c5;
    color: #0a2540;
    border: none;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #4fd1c5;
    color: #4fd1c5;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: var(--font-x);
    }

    .hero p {
        font-size: var(--font-m);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

.about {
    background: #f7f8fa;
    padding: 60px 20px;
    text-align: center;
}
.about h2 {
    font-size: var(--font-xl);
    color: #223366;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
p.about-desc{
    font-size: var(--font-m);
    color: #444;
    margin-bottom: 2.5rem!important;
    line-height: 2;
}
.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.about-feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34,51,102,0.07);
    padding: 30px 24px;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.about-feature p {
    font-size: var(--font-m);
    color: #223366;
    font-weight: 500;
}
@media (max-width: 900px) {
    .about h2 {
        font-size: var(--font-x);
        line-height: 1.5;
        color: #223366;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }
    .about-features {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .about-feature {
        width: 100%;
        max-width: 340px;
    }
}

.reasons {
    background: #f7f8fa;
    padding: 60px 20px;
    text-align: center;
}
.reasons h2 {
    font-size: var(--font-x);
    color: #223366;
    margin-bottom: 2.5rem;
    font-weight: 700;
}
.reasons-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.reason-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34,51,102,0.05);
    padding: 40px 30px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reason-check {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FF6B6B;
}
.reason-content {
    text-align: center;
}
.reason-content h3 {
    font-size: var(--font-l);
    color: #223366;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.5;
}
.reason-content p {
    font-size: var(--font-m);
    color: #444;
    line-height: 1.8;
}
@media (max-width: 900px) {
    .reasons-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        padding: 0 20px;
    }
    .reason-item {
        width: 100%;
        max-width: 500px;
    }
}

.features {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}
.features h2 {
    font-size: var(--font-x);
    color: #223366;
    margin-bottom: 2.5rem;
    font-weight: 700;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.feature-item {
    background: #f7f8fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(34,51,102,0.05);
    padding: 28px 20px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.feature-item p {
    font-size: var(--font-m);
    color: #223366;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .features h2 {
        font-size: var(--font-l);
        line-height: 1.5;
    }
    .feature-list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .feature-item {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: initial;
    }
    .feature-item span{
        margin-right: 10px;
    }
}

.cases {
    background: #f7f8fa;
    padding: 60px 20px;
    text-align: center;
}
.cases h2 {
    font-size: var(--font-x);
    color: #223366;
    margin-bottom: 2.5rem;
    font-weight: 700;
}
.cases-swiper {
    width: 100%;
    max-width: none;
    margin: 40px 0 0 0;
    padding-bottom: 56px;
    position: relative;
}
.cases-swiper .swiper-pagination {
    bottom: 12px !important;
}
.cases-swiper .swiper-pagination-bullet {
    background: #8d6748;
    opacity: 0.5;
    width: 14px;
    height: 14px;
    margin: 0 6px !important;
    border-radius: 50%;
    transition: background 0.3s, opacity 0.3s;
}
.cases-swiper .swiper-pagination-bullet-active {
    background: #FF6B6B;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(255,107,107,0.18);
}

.cta {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}
.cta h2 {
    font-size: var(--font-x);
    color: #223366;
    margin-bottom: 2.5rem;
    font-weight: 700;
}
