* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container{
    padding: 0 10px;
    max-width: 1530px;
    margin: 0 auto;
}
@media (max-width: 1440px) {
    .container{
        max-width: 1152px;
    }
}

.hero {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero .hero-content {
    width: 100%;
    min-height: 834px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 210px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
}


.hero .hero-content .hero-info {
    max-width: 720px;
    color: #ffffff;
}

.hero .hero-content .hero-info h1 {
    font-size: 86px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.1;
    margin: 0 0 20px;
}

.hero .hero-content .hero-info .description {
    font-size: 18px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 570px;
}

.hero .hero-content .hero-info .button-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #009DFF;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    gap: 8px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 40px;
    transition: background-color 0.2s ease-in-out;
}
.hero .hero-content .hero-info .button-hero img {
    display: inline-block;
    width: 16px;
    height: auto;
}

.hero .hero-content .hero-info .button-hero:hover {
    background-color: #0083E0;
}
@media(max-width: 1440px){
    .hero .hero-content {
        padding: 0 160px;
    }
}
@media (max-width: 1024px) {
    .hero .hero-content {
        min-height: 600px;
        padding: 0 40px;
        background-position: 80% center;
    }
    .hero .hero-content .hero-info h1 {
        font-size: 64px;
    }
    .hero .hero-content .hero-info .description {
        font-size: 16px;
        max-width: 400px;
    }
    .hero .hero-content .hero-info .button-hero {
        font-size: 18px;
        padding: 14px 28px;
    }
}

@media (max-width: 768px) {
    .hero .hero-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 500px;
        padding: 20px;
        background-size: cover;
        background-position: center center;
    }
    .hero .hero-content .hero-info {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero .hero-content .hero-info h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }
    .hero .hero-content .hero-info .description {
        font-size: 14px;
        margin-bottom: 24px;
        max-width: 280px;
    }
    .hero .hero-content .hero-info .button-hero {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero .hero-content {
        min-height: 400px;
        padding: 16px;
    }
    .hero .hero-content .hero-info .description {
        font-size: 14px;
        margin-bottom: 18px;
        text-align: left;
        max-width: 270px;
    }
    .hero .hero-content .hero-info .button-hero {
        font-size: 15px;
        padding: 10px 20px;
        max-width: 180px;
    }
    .hero .hero-content .hero-info{
        align-items: flex-start;
        width: 100%;
    }
    .hero .hero-content .hero-info h1{
        max-width: 270px;
        text-align: left;
    }
}

.choose-us{
    padding: 106px 0;
}

.choose-us h2{
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #454E5B;
    text-align: center;
    margin: 0 0 16px 0;
}

.choose-us .description{
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #95A2B5;
    text-align: center;
}

.choose-us .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #ffffff;
    width: 100%;
    margin-top: 68px;
}

.choose-us .stat-item {
    flex: 1 1 0;
    max-width: 25%;
    min-width: 200px;
    position: relative;
    text-align: center;
    padding: 40px 20px;
}

.choose-us .stat-item + .stat-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: #D4D2E3;
}

.choose-us .stat-number {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #009DFF;
    line-height: 1.1;
}

.choose-us .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #333333;
    margin-top: 8px;
    line-height: 24px;
}

.choose-us .stat-number .number-plus{
    color: #BAC2CD;
}

@media (max-width: 1024px) {
    .choose-us .stat-item {
        max-width: 50%;
        padding: 30px 15px;
    }
    .choose-us .stat-item:nth-child(3)::before {
        display: none;
    }
    .choose-us .stat-number {
        font-size: 32px;
    }
    .choose-us .stat-label {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .choose-us{
        padding: 30px 0;
    }

    .choose-us .stat-item {
        max-width: 100%;
        padding: 20px 10px;
    }
    .choose-us .stat-item::before {
        display: none;
    }
    .choose-us .stat-number {
        font-size: 28px;
    }
    .choose-us .stat-label {
        font-size: 14px;
    }
    .choose-us .stats {
        justify-content: center;
        margin-top: 0;
    }
    .choose-us h2{
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .choose-us .stat-item {
        padding: 16px 8px;
    }
    .choose-us .stat-number {
        font-size: 24px;
    }
}












.about-block {
    display: flex;
    width: 100%;
    height: 540px;
    border-radius: 16px;
    overflow: hidden;
}

.about-image {
    flex: 1 1 50%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content {
    flex: 1 1 50%;
    background-color: #D3F0D4;
    padding: 60px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #454E5B;
    margin:0 0 16px 0;
    line-height: 43px;
}

.about-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454E5B;
    line-height: 26px;
    margin-bottom: 30px;
    max-width: 430px;
}

.about-button {
    display: inline-block;
    background-color: #6AB86D;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 24px 36px;
    border-radius: 40px;
    width: max-content;
}

@media (max-width: 1024px) {
    .about-content {
        padding: 40px 20px;
    }
    .about-content h2 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    .about-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .about-button {
        font-size: 16px;
        padding: 12px 28px;
    }
}

@media (max-width: 768px) {
    .about-block {
        flex-direction: column-reverse;
        height: auto;
    }
    .about-image {
        height: 200px;
    }
    .about-content {
        padding: 30px 16px;
    }
    .about-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .about-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .about-button {
        font-size: 14px;
        padding: 10px 24px;
    }
}














.services-section {
    width: 100%;
    padding: 106px 0;
    box-sizing: border-box;
}

.services-section h2{
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: #454E5B;
    margin: 0 0 16px 0;
    text-align: center;
}

.services-section .description{
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 0 60px 0;
    text-align: center;
    color: #95A2B5;
}

.services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
}

.services-section .service-card {
    position: relative;
    width: 100%;
    padding-top: 72%;
    background-size: cover;
    background-position: center center;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.services-section .service-card:hover {
    transform: scale(1.025);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-section .service-card .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.services-section .service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.services-section .service-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    margin: 0 0 12px;
}

.services-section .service-excerpt {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 0 37px;
    max-width: 90%;
}

.services-section .service-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.services-section .service-link .arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 18px;
    line-height: 1;
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.services-section .service-link:hover .arrow {
    transform: translateX(4px);
}

.services-section .services-footer {
    margin-top: 40px;
    text-align: center;
}

.services-section .btn-services-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #009DFF;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.services-section .btn-services-all .arrow {
    margin-left: 8px;
    width: 16px;
    height: auto;
}
.services-section .btn-services-all:hover {
    background-color: #0081e0;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
    }
    .services-section .service-card {
        padding-top: 350px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    .services-section .service-card {
        padding-top: 300px;
    }
    .services-section .service-title {
        font-size: 20px;
        line-height: 27px;
    }
    .services-section .service-excerpt {
        font-size: 16px;
        line-height: 22px;
    }
    .services-section .service-link {
        font-size: 14px;
    }
    .services-section .btn-services-all {
        font-size: 16px;
        padding: 12px 28px;
    }
    .services-section h2{
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-section .services-grid {
        grid-gap: 25px;
    }
    .services-section {
        padding: 24px 0;
    }
    .services-section .service-overlay {
        padding: 16px;
    }
    .services-section .service-title {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 24px;
    }
    .services-section .service-excerpt {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 22px;
    }
    .services-section .btn-services-all {
        font-size: 14px;
        padding: 10px 24px;
    }
    .services-section .service-card .service-overlay{
        justify-content: center;
        padding: 20px;
    }
}










.benefits-section {
    width: 100%;
    background-color: #F5F8FB;
    padding: 84px 0;
    box-sizing: border-box;
}

.benefits-section h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #6AB86D;
    text-align: center;
    margin: 0 0 50px 0;
    line-height: 46px;
}

.benefits-section .benefits-grid {
    display: grid;
    grid-template-areas:
    "card1 card2 card-big"
    "card3 card3 card-big";
    grid-template-columns: 1fr 1fr 2fr;
    grid-auto-rows: auto;
    gap: 28px;
}

/* Первая маленькая карточка (Convenience) */
.benefits-section .benefit-card-1 {
    grid-area: card1;
}

/* Вторая маленькая карточка (Comfort) */
.benefits-section .benefit-card-2 {
    grid-area: card2;
}

/* Третья карточка, занимает 2 колонки во второй строке */
.benefits-section .benefit-card-3 {
    grid-area: card3;
}

/* Большая карточка (справа) */
.benefits-section .benefit-card-big {
    grid-area: card-big;
}

.benefits-section .benefit-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px 26px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

/* Иконка в маленьких карточках */
.benefits-section .benefit-icon {
    margin-bottom: 16px;
}

.benefits-section .benefit-icon img {
    width: 44px;
    height: 44px;
    display: block;
}

.benefits-section .benefit-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 38px;
    color: #454E5B;
    margin: 0 0 7px;
}

.benefits-section .benefit-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454E5B;
    line-height: 26px;
    margin: 0;
}

.benefits-section .benefit-card-big {
    background-color: #D3F0D4;
    padding: 28px 26px;
}

.benefits-section .benefit-icon-big {
    margin-bottom: 20px;
}

.benefits-section .benefit-icon-big img {
    width: 44px;
    height: 44px;
    display: block;
}

.benefits-section .benefit-heading-big {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 38px;
    color: #454E5B;
    margin: 0 0 7px;
}

.benefits-section .benefit-text-big {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #454E5B;
    line-height: 26px;
    margin: 0 0 16px;
}

.benefits-section .benefit-text-big p{
    margin-bottom: 25px;
}

.benefits-section .benefit-card-big .benefit-text-big:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits-section .benefits-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
      "card1"
      "card2"
      "card3"
      "card-big";
        gap: 20px;
    }

    .benefits-section {
        padding: 40px 12px;
    }

    .benefits-section .benefit-card {
        padding: 16px;
    }

    .benefits-section .benefit-icon {
        margin-bottom: 10px;
    }

    .benefits-section .benefit-heading {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .benefits-section .benefit-text {
        font-size: 14px;
    }

    .benefits-section .benefit-card-big {
        padding: 20px;
    }

    .benefits-section .benefit-icon-big {
        margin-bottom: 14px;
    }

    .benefits-section .benefit-heading-big {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefits-section .benefit-text-big {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .benefits-section .benefit-text-big p{
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 32px 8px;
    }

    .benefits-section .benefits-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .benefits-section .benefit-card {
        padding: 12px;
    }

    .benefits-section .benefit-icon {
        margin-bottom: 8px;
    }

    .benefits-section .benefit-heading {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .benefits-section .benefit-card-big {
        padding: 16px;
    }

    .benefits-section .benefit-icon-big {
        margin-bottom: 12px;
    }

    .benefits-section .benefit-heading-big {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .benefits-section .benefit-text-big {
        font-size: 11px;
        margin-bottom: 8px;
    }
}

.reviews-slider{
    padding: 106px 0;
}

.reviews-slider h2{
    text-align: center;
    margin: 0 0 50px 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #454E5B;
}

.reviews-slider .swiper-slide{
    padding: 35px;
    background-color: #F5F8FB;
    border-radius: 24px;
}

.reviews-slider .swiper-slide .review{
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
    color: #454E5B;
}

.reviews-slider .swiper-slide .reviewer{
    display: flex;
    gap: 16px;
}

.reviews-slider .swiper-slide .reviewer .photo{
    width: 71px;
    height: 71px;
    object-fit: cover;
}

.reviews-slider .swiper-slide .reviewer-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.reviews-slider .swiper-slide .reviewer-info span{
    margin-left: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #454E5B;
}

.reviews-slider .swiper-pagination{
    position: unset;
    margin-top: 60px;
}

.reviews-slider .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #000000;
    opacity: 1;
}

.reviews-slider .swiper-pagination-bullet{
    background-color: #000000;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .reviews-slider{
        padding: 30px 0;
    }
    .reviews-slider h2{
        font-size: 28px;
        line-height: 36px;
        margin: 0 0 20px 0;
    }
}







.questions-section {
    width: 100%;
    background-color: #DFEEF8;
    padding: 125px 20px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.questions-section::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -100px;
    width: 887px;
    height: 358px;
    z-index: 1;
    background: url("../img/hand.png") no-repeat center center;
}

.questions-section .questions-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 230px;
}

.questions-section .questions-left {
    display: flex;
    flex-direction: column;
    max-width: 350px;
}

.questions-section .questions-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #454E5B;
    margin: 0 0 24px;
    line-height: 1.2;
}

.questions-section .questions-stats {
    display: flex;
    gap: 16px;
}

.questions-section .stat-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.questions-section .stat-number {
    font-family: 'DM Sans', sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 25px;
    color: #009DFF;
    margin-bottom: 4px;
}

.questions-section .stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #454E5B;
    text-align: center;
}

.questions-section .questions-right {
    display: flex;
    align-items: center;
    max-width: 400px;
}

.questions-section .questions-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.questions-section .wpcf7-form-control.wpcf7-text {
    width: 100%;
    max-width: 400px;
    padding: 24px 37px;
    border: none;
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #2f3e46;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.questions-section .wpcf7-form-control.wpcf7-text::placeholder {
    color: #a1aab9;
}

.questions-section .wpcf7-form-control.wpcf7-submit {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 26px 37px;
    background-color: #009DFF;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 32px;
    text-align: left;
    background-image: url("../img/arrow_right.svg");
    background-repeat: no-repeat;
    background-position: right 37px center;
    background-size: 16px 16px;
}

.questions-section .wpcf7-form-control.wpcf7-submit:hover {
    background-color: #0081e0;
    transform: translateY(-2px);
}

.questions-section .wpcf7-form-control.wpcf7-submit::after {
    content: "";
    display: inline-block;
    background-image: url("../img/arrow_right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.questions-section .wpcf7-spinner{
    display: none;
}

.questions-section .wpcf7-not-valid-tip{
    text-align: center;
}

.questions-section br{
    display: none;
}

@media (max-width: 1024px) {
    .questions-section {
        padding: 60px;
    }
    .questions-section .questions-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .questions-section .questions-stats {
        gap: 12px;
    }
    .questions-section .stat-card {
        padding: 14px 16px;
        min-width: 100px;
    }
    .questions-section .stat-number {
        font-size: 24px;
        line-height: 30px;
    }
    .questions-section .stat-label {
        font-size: 13px;
    }
    .questions-section .questions-right {
        margin-top: 24px;
    }
    .questions-section .questions-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .questions-section .questions-form {
        width: 100%;
    }
    .questions-section .wpcf7-form-control.wpcf7-submit {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .questions-section {
        padding: 40px;
    }
    .questions-section .stat-card {
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px 16px;
        min-width: auto;
    }
    .questions-section .questions-form {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .questions-section {
        padding: 32px;
    }
    .questions-section .stat-card {
        padding: 10px 14px;
        gap: 10px;
    }
    .questions-section .wpcf7-form-control.wpcf7-submit::after {
        right: 14px;
        width: 12px;
        height: 12px;
    }
}













.accordion .accordion-item {
    border-bottom: 1px solid #DCDDEB;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #7288a2;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
    border-radius: 0;
}
.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}
.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 0 32px 0 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
    color: #454E5B;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    display: block;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 24px;
    height: 24px;
    border-radius: 22px;
    background-color: #F1F4F4;
}
.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 11px;
    left: 7px;
    width: 10px;
    height: 2px;
    background: #8B93A7;
}
.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 7px;
    left: 11px;
    width: 2px;
    height: 10px;
    background: #8B93A7;
}

.accordion button[aria-expanded="true"] {
    color: #03b5d2;
}
.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 250px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content p {
    margin: 0 0 34px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #454E5B;
}

.faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 106px 0;
}

.faq button:focus, .faq button:hover{
    background-color: #ffffff;
}

.faq .accordion{
    max-width: 1110px;
}

.faq h2{
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    color: #454E5B;
    margin:0 0 70px 0;
}

.faq .pre-header{
    margin-bottom: 16px;
    display: block;
    text-align: center;
    color: #8B93A7;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
}

@media(max-width: 768px){
    .faq{
        padding: 30px 0;
    }
    .faq h2{
        font-size: 28px;
        text-align: center;
        line-height: 36px;
    }
}

@media (max-width: 550px){
    .accordion button .accordion-title{
        font-size: 18px;
    }
    .faq h2{
        margin:0 0 10px 0;
    }
}


.blog-section {
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
}
.blog-section .blog-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #454E5B;
    text-align: center;
    margin: 0 auto 40px;
}
.blog-grid {
    display: grid;
    grid-template-areas:
      "p1 p3"
      "p2 p3";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.blog-post {
    position: relative;
    background-size: cover;
    background-position: center center;
    border-radius: 12px;
    overflow: hidden;
}
.blog-post .overlay-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    z-index: 2;
}
.blog-post .post-info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    border-radius: 6px;
    padding: 16px;
}
.blog-post .post-date {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    line-height: 18px;
    text-transform: uppercase;
    letter-spacing: 10%;
}
.blog-post .post-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 28px;
}
.post-1 {
    grid-area: p1;
    height: 240px;
}
.post-2 {
    grid-area: p2;
    height: 240px;
}
.post-3 {
    grid-area: p3;
    height: 504px;
}
.blog-section-footer {
    text-align: center;
    margin-top: 55px;
}
.blog-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #62b85c;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    gap: 8px;
}
.blog-view-all:hover {
    background-color: #52a14b;
    transform: translateY(-2px);
    color: #ffffff;
}

.blog-section .blog-post::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    z-index: 1;
}

.blog-section .blog-post:hover::before{
    background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .blog-grid {
        grid-template-areas:
        "p1"
        "p2"
        "p3";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .blog-section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    .post-1,
    .post-2,
    .post-3 {
        height: 180px;
    }
    .blog-post .post-info {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px;
    }
    .blog-post .post-date {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .blog-view-all {
        padding: 10px 24px;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .post-1,
    .post-2,
    .post-3 {
        height: 160px;
    }
    .blog-post .post-info {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 8px;
    }
    .blog-post .post-date {
        font-size: 11px;
        margin-bottom: 4px;
    }
    .blog-post .post-title {
        font-size: 18px;
        line-height: 20px;
    }
    .blog-view-all {
        padding: 8px 20px;
        font-size: 13px;
    }
}