body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    overflow-x: hidden;
}
a{
    text-decoration: none;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.2s, box-shadow 0.2s;
}
.navbar-logo {
    font-weight: bold;
    font-size: 1.5rem;
}
.navbar-links {
    display: flex;
    gap: 32px;
    transition: right 0.3s;
}
.navbar-links a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    font-weight: 500;
}
.navbar-cta {
    background: #0074D9;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}
.navbar-cta:hover {
    background: #005fa3;
}
.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: 16px;
}
.navbar-burger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}
.hero {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    background: #f7faff;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #222;
    letter-spacing: -1px;
}
.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin-bottom: 40px;
    color: #444;
    line-height: 1.6;
}
.hero-cta {
    background: #0074D9;
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s;
}
.hero-cta:hover {
    background: #005fa3;
}
.info-section {
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 48px 16px;
}
.info-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}
.info-desc {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 12px auto;
    line-height: 1.6;
}
.info-cards {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.info-card {
    min-width: 220px;
    padding: 32px 28px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    background: #f7faff;
    transition: transform 0.15s, box-shadow 0.15s;
}
.info-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
}
.card-value {
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}
.card-blue {
    background: linear-gradient(135deg, #0074D9 70%, #339cff 100%);
}
.card-lilac {
    background: linear-gradient(135deg, #b16cea 70%, #ff6bcb 100%);
}
.card-black {
    background: linear-gradient(135deg, #232526 80%, #414345 100%);
}
@media (max-width: 900px) {
    .info-cards {
        gap: 18px;
    }
    .info-card {
        min-width: 160px;
        padding: 24px 12px;
    }
}
@media (max-width: 700px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        padding: 12px 16px;
    }
    .navbar-links {
        position: absolute;
        top: 60px;
        right: -100vw;
        background: #fff;
        flex-direction: column;
        gap: 24px;
        padding: 24px 0;
        width: 100vw;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        align-items: center;
        z-index: 10;
    }
    .navbar-links.active {
        right: 0;
    }
    .navbar-cta {
        margin-left: auto;
    }
    .navbar-burger {
        display: flex;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .hero {
        min-height: 80vh;
        padding: 32px 8px 24px 8px;
    }
    .info-section {
        padding: 40px 8px 32px 8px;
    }
    .info-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-top: 28px;
    }
    .info-card {
        width: 100%;
        max-width: 350px;
    }
}

.partners-section {
    width: 100vw;
    background: #f7faff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 16px 48px 16px;
}
.partners-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}
.partners-logos {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.partners-logos img {
    height: 56px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(0.2) brightness(0.95);
    transition: filter 0.2s, transform 0.2s;
}
.partners-logos img:hover {
    filter: none;
    transform: scale(1.07);
}
@media (max-width: 900px) {
    .partners-logos {
        gap: 28px;
    }
    .partners-logos img {
        height: 40px;
        max-width: 110px;
    }
}
@media (max-width: 700px) {
    .partners-section {
        padding: 32px 8px 32px 8px;
    }
    .partners-logos {
        gap: 18px;
    }
    .partners-logos img {
        height: 32px;
        max-width: 80px;
    }
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    padding: 72px 8vw;
    background: #fff;
}
.split-section .split-image {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.split-section .split-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    object-fit: cover;
}
.split-section .split-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 520px;
}
.split-section .split-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
}
.split-section .split-text p {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.7;
}
.split-section.reverse {
    flex-direction: row-reverse;
}
@media (max-width: 1000px) {
    .split-section {
        flex-direction: column;
        gap: 32px;
        padding: 48px 4vw;
    }
    .split-section.reverse {
        flex-direction: column;
    }
    .split-section .split-image img {
        max-width: 320px;
    }
    .split-section .split-text {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .split-section {
        padding: 32px 0;
        gap: 18px;
    }
    .split-section .split-image img {
        max-width: 90vw;
        border-radius: 10px;
    }
    .split-section .split-text h2 {
        font-size: 1.2rem;
    }
    .split-section .split-text p {
        font-size: 1rem;
    }
}

.value-section {
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 48px 16px;
}
.value-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}
.value-desc {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 12px auto;
    line-height: 1.6;
}
.value-cards {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.value-card {
    background: #f7faff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 36px 28px 32px 28px;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.value-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.value-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
.value-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
    text-align: center;
}
.value-text {
    font-size: 1rem;
    color: #444;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .value-cards {
        gap: 18px;
    }
    .value-card {
        min-width: 180px;
        max-width: 100%;
        padding: 28px 12px 24px 12px;
    }
}
@media (max-width: 700px) {
    .value-section {
        padding: 40px 8px 32px 8px;
    }
    .value-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-top: 28px;
    }
    .value-card {
        width: 100%;
        max-width: 350px;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.check-list li {
    font-size: 1.18rem;
    color: #222;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.5;
}
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 14px;
    font-size: 1.3rem;
    color: #0074D9;
    background: #eaf6ff;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
@media (max-width: 1000px) {
    .check-list li {
        font-size: 1.05rem;
    }
    .check-icon {
        width: 22px;
        height: 22px;
        font-size: 1rem;
        margin-right: 10px;
    }
}
@media (max-width: 700px) {
    .check-list {
        gap: 14px;
    }
    .check-list li {
        font-size: 0.98rem;
    }
    .check-icon {
        width: 18px;
        height: 18px;
        font-size: 0.85rem;
        margin-right: 8px;
    }
}

.types-section {
    width: 100vw;
    background: #f7faff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 48px 16px;
}
.types-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}
.types-desc {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 12px auto;
    line-height: 1.6;
}
.types-cards {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}
.types-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 36px 28px 32px 28px;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
}
.types-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.types-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0074D9;
    text-align: center;
}
.types-text {
    font-size: 1rem;
    color: #444;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .types-cards {
        gap: 18px;
    }
    .types-card {
        min-width: 180px;
        max-width: 100%;
        padding: 28px 12px 24px 12px;
    }
}
@media (max-width: 700px) {
    .types-section {
        padding: 40px 8px 32px 8px;
    }
    .types-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-top: 28px;
    }
    .types-card {
        width: 100%;
        max-width: 350px;
    }
}

.trusted-section {
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 48px 16px;
}
.trusted-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px;
    color: #1a1a1a;
}
.trusted-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
}
.trusted-gp-icon {
    height: 32px;
    width: auto;
}
.trusted-score {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0074D9;
}
.trusted-stars {
    color: #FFD600;
    font-size: 1.2rem;
    margin: 0 4px;
}
.trusted-count {
    color: #888;
    font-size: 1rem;
}
.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.carousel-arrows-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}
.carousel-arrow {
    background: #f7faff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
    color: #0074D9;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    z-index: 2;
}
.carousel-arrow:hover {
    background: #0074D9;
    color: #fff;
}
.carousel-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    scroll-behavior: smooth;
    align-items: stretch;
    padding: 30px;
}
.review-card {
    background: #f7faff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 22px 20px 22px;
    min-width: 450px;
    max-width: 450px;
    flex: 0 0 31%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    min-height: 350px;
    height: 100%;
    box-sizing: border-box;
}

.review-stars {
    color: #FFD600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
    flex: 0 0 auto;
    text-align: left;
}
.review-text {
    font-size: 1.02rem;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.5;
    flex: 0 0 auto;
    min-height: 80px;
}
.review-user-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    padding-top: 12px;
}
.review-user {
    font-weight: 600;
    color: #0074D9;
    font-size: 1rem;
    margin-bottom: 2px;
}
.review-date {
    color: #888;
    font-size: 0.95rem;
}
@media (max-width: 1100px) {
    .carousel-track {
        max-width: 700px;
        align-items: stretch;
    }
    .review-card {
        min-width: 220px;
        max-width: 260px;
        flex-basis: 45%;
        min-height: 400px;
    }
}
@media (max-width: 900px) {
    .carousel-track {
        max-width: 500px;
        align-items: stretch;
    }
    .review-card {
        min-width: 180px;
        max-width: 220px;
        flex-basis: 80%;
        min-height: 260px;
    }
}
@media (max-width: 700px) {
    .trusted-section {
        padding: 40px 8px 32px 8px;
    }
    .carousel-track {
        gap: 10px;
        max-width: 90vw;
        align-items: stretch;
    }
    .review-card {
        min-width: 90vw;
        max-width: 95vw;
        padding: 18px 8px 44px 8px;
        min-height: 180px;
        height: auto;
    }
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    .carousel-arrows-bottom {
        margin-top: 10px;
    }
    .review-user-date {
        padding-top: 8px;
    }
}

.steps-section {
    width: 100vw;
    background: #f7faff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 48px 16px;
}
.steps-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 36px;
    color: #1a1a1a;
}
.steps-cards {
    display: flex;
    gap: 32px;
    margin-top: 0;
    justify-content: center;
    flex-wrap: wrap;
}
.steps-card {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 36px 28px 32px 28px;
    min-width: 240px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.15s, box-shadow 0.15s;
    color: #fff;
}
.steps-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.steps-blue1 {
    background: linear-gradient(135deg, #0074D9 80%, #339cff 100%);
}
.steps-blue2 {
    background: linear-gradient(135deg, #339cff 80%, #00c6fb 100%);
}
.steps-blue3 {
    background: linear-gradient(135deg, #005fa3 80%, #0074D9 100%);
}
.steps-icon {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
.steps-step {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    color: #eaf6ff;
}
.steps-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    color: #fff;
}
.steps-text {
    font-size: 1rem;
    color: #eaf6ff;
    text-align: center;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .steps-cards {
        gap: 18px;
    }
    .steps-card {
        min-width: 180px;
        max-width: 100%;
        padding: 28px 12px 24px 12px;
    }
}
@media (max-width: 700px) {
    .steps-section {
        padding: 40px 8px 32px 8px;
    }
    .steps-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-top: 28px;
    }
    .steps-card {
        width: 100%;
        max-width: 350px;
    }
}

.why-section {
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 48px 16px;
}
.why-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: #1a1a1a;
}
.why-desc {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    text-align: center;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}
.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1100px;
}
.why-card {
    background: #f7faff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.15s, box-shadow 0.15s;
}
.why-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.why-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0074D9;
}
.why-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}
@media (max-width: 1100px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .why-section {
        padding: 40px 8px 32px 8px;
    }
    .why-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .why-card {
        padding: 20px 10px 18px 10px;
    }
}

.cta-section {
    width: 100vw;
    background: linear-gradient(135deg, #0074D9 80%, #339cff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px 64px 16px;
}
.cta-section h2 {
    color: #fff;
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 22px;
}
.cta-desc {
    color: #eaf6ff;
    font-size: 1.18rem;
    text-align: center;
    max-width: 600px;
    margin-bottom: 36px;
    line-height: 1.6;
}
.cta-btn {
    background: #fff;
    color: #0074D9;
    border: none;
    padding: 16px 44px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
    background: #eaf6ff;
    color: #005fa3;
}

.cta-form {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 36px 28px 28px 28px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 36px;
    align-items: center;
}
.cta-form h3 {
    color: #0074D9;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}
.cta-form .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cta-form label {
    font-size: 1rem;
    color: #0074D9;
    font-weight: 600;
}
.cta-form input,
.cta-form select,
.cta-form input[type=tel],
.cta-form textarea {
    padding: 12px 14px;
    border: 1.5px solid #cce6ff;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7faff;
    color: #222;
    transition: border 0.2s;
    resize: none;
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form input[type=tel]:focus,
.cta-form textarea:focus {
    border: 1.5px solid #0074D9;
    outline: none;
}
.cta-form .cta-btn {
    width: 100%;
    margin-top: 10px;
    background: #0074D9;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: background 0.2s, color 0.2s;
}
.cta-form .cta-btn:hover {
    background: #005fa3;
    color: #fff;
}
@media (max-width: 700px) {
    .cta-section {
        padding: 40px 8px 40px 8px;
    }
    .cta-section h2 {
        font-size: 1.3rem;
    }
    .cta-desc {
        font-size: 1rem;
        margin-bottom: 22px;
    }
    .cta-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
    .cta-form {
        padding: 16px 4px 14px 4px;
        max-width: 98vw;
        margin-top: 22px;
    }
}

.faq-section {
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px 16px 64px 16px;
}
.faq-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 32px;
    text-align: center;
}
.faq-list {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e5e5e5;
    box-shadow: none;
    overflow: hidden;
    transition: border 0.15s;
}
.faq-item.open {
    border-color: #0074D9;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.13rem;
    font-weight: 600;
    color: #111;
    padding: 22px 24px;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question:hover {
    background: #f5f5f5;
}
.faq-arrow {
    display: inline-block;
    margin-left: 16px;
    font-size: 1.2em;
    color: #888;
    transition: transform 0.3s;
}
.faq-arrow svg {
    transition: transform 0.3s;
}
.faq-item.open .faq-arrow {
    color: #0074D9;
}
.faq-item.open .faq-arrow svg {
    transform: rotate(-180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    color: #222;
    font-size: 1rem;
    padding: 0 24px;
    transition: max-height 0.3s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
    padding: 0 24px 18px 24px;
    max-height: 400px;
}
@media (max-width: 700px) {
    .faq-section {
        padding: 32px 4px 32px 4px;
    }
    .faq-section h2 {
        font-size: 1.3rem;
    }
    .faq-list {
        max-width: 98vw;
        gap: 10px;
    }
    .faq-question {
        font-size: 1rem;
        padding: 14px 10px;
    }
    .faq-answer {
        font-size: 0.98rem;
        padding: 0 10px;
    }
    .faq-item.open .faq-answer {
        padding: 0 10px 12px 10px;
    }
}
.check-list + .cta-btn {
    margin-top: 28px;
}

.footer {
    width: 100vw;
    background: #111;
    color: #fff;
    padding: 48px 0 18px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 8px;
}
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-nav a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover {
    color: #0074D9;
    opacity: 1;
}
.footer-copy {
    color: #bbb;
    font-size: 0.98rem;
    margin-top: 28px;
    text-align: center;
}
.footer-legal {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.footer-legal-link {
    color: #fff;
    opacity: 0.7;
    font-size: 0.98rem;
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.footer-legal-link:hover {
    color: #0074D9;
    opacity: 1;
}
.footer-legal-sep {
    color: #fff;
    opacity: 0.6;
    font-size: 1.1em;
}
.footer-contact {
    margin-top: 18px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}
.footer-phone a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: color 0.2s, opacity 0.2s;
}
.footer-phone a:hover {
    color: #0074D9;
    opacity: 1;
}
@media (max-width: 700px) {
    .footer {
        padding: 32px 0 12px 0;
    }
    .footer-nav {
        gap: 14px;
    }
    .footer-logo {
        font-size: 1.1rem;
    }
    .footer-copy {
        font-size: 0.85rem;
        margin-top: 18px;
    }
    .footer-legal {
        flex-direction: column;
        gap: 2px;
    }
    .footer-legal-sep {
        display: none;
    }
    .footer-contact {
        font-size: 0.92rem;
        margin-top: 10px;
    }
}