body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.header {
    width: 100%;
    position: relative;
    z-index: 100;
    background: white;
    transition: all 0.3s ease;
}

.header__main.scrolled {
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 9;
    width: calc(100% - 32px);
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__top {
    background-color: #432502;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 1rem 1rem;
    font-size: 0.9rem;
}

.header__info span {
    margin-right: 1.5rem;
}

.header__social a {
    margin-left: 0.5rem;
    color: #ffa16a;
}

.header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.header__logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
}

.header__logo span {
    color: #ffb26a;
}

.header__logo p {
    font-size: 0.75rem;
    margin-top: -0.5rem;
}

.header__nav {
    display: flex;
}

.nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: #333;
}

.nav__link.active,
.nav__link:hover {
    color: #ffc36a;
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.header__burger span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .header__nav {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 100%;
        right: 0;
        z-index: 9;
        padding: 20px;
        width: calc(100% - 40px);
        border: 1px solid #ddd;
    }

    .header__nav.active {
        display: flex;
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        height: 100vh;
        gap: 10px;
        padding: 0;
        flex-direction: column;
    }

    .header__burger {
        display: flex;
    }
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
}

.hero__slider,
.hero__slide {
    height: 100%;
}

.hero__slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    color: #fff;
    text-align: center;
    max-width: 700px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.hero__content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero__btn {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #1b1b1b;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.about-us {
    padding: 80px 20px;
    background: #f9f9fc;
    font-family: 'Poppins', sans-serif;
}

.about-us__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-us__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 1;
}

.about-us__item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    text-align: left;
}

.about-us__item--active {
    background: #ff954e;
    color: #fff;
}

.about-us__item--active {
    background: #ff9e4e;
    color: #fff;
}

.about-us__item--active .about-us__text {
    font-size: 14px;
    color: #ffffff;
}

.about-us__icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #ffb84e;
    display: inline-flex;
    padding: 12px;
    background: #e7edff;
    border-radius: 50%;
}

.about-us__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-us__text {
    font-size: 14px;
    color: #666;
}

.about-us__content {
    flex: 1;
}

.about-us__subtitle {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    color: #999;
}

.about-us__heading {
    font-size: 32px;
    margin: 20px 0;
}

.about-us__desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.about-us__btn {
    display: inline-block;
    background: #f07511;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 178, 78, 0.2);
    transition: 0.3s;
}

.about-us__btn:hover {
    background: #d8993a;
}

.video-div {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.video-div__container {
    display: flex;

    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-div__image {
    flex: 1 1 50%;
    text-align: center;
}

.video-div__image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.video-div__content {
    flex: 1 1 50%;
    padding: 30px;
}

.video-div__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 15px;
}

.video-div__title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.video-div__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-div__button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #ffbb00;
    transition: color 0.3s ease;
}

.video-div__play {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: #ff7b00;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-div__button:hover .video-div__play {
    transform: scale(1.1);
}

.video-div__label {
    font-size: 16px;
}

.services-us {
    background: #f6f7fb;
    padding: 80px 20px;
    text-align: center;
}

.services-us__container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-us__subtitle {
    text-transform: uppercase;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.services-us__title {
    font-size: 32px;
    color: #222;
    font-weight: 700;
    margin-bottom: 40px;
}

.services-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.services-us__item {

    padding: 30px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.services-us__item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #fff;
}

.services-us__icon {
    width: 50px;
    margin-bottom: 15px;
}

.services-us__name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services-us__desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.services-us__icon {
    font-size: 40px;
    color: #ff7637;
    margin-bottom: 15px;
}

.cases {
    padding: 90px 0px 0 0;
    background-color: #f9f9fc;
    text-align: center;
}

.cases__subtitle {
    text-transform: uppercase;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.cases__title {
    font-size: 28px;
    margin-bottom: 40px;
    color: #222;
}

.cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0px;
}

.cases__item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.cases__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cases__item:hover .cases__img {
    transform: scale(1.05);
}

.cases__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 42, 71, 0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cases__item:hover .cases__overlay {
    opacity: 1;
}

.cases__text {
    font-size: 20px;
    padding: 10px 20px;
}

.stats {

    color: #fff;
    position: relative;
    padding: 0px;
    text-align: center;
}

.stats__overlay {
    background-color: rgb(255 156 51 / 85%);
    padding: 60px 20px;
}

.stats__container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats__subtitle {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stats__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats__number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats__label {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.testimonial {
    padding: 80px 20px;
    background: #f7f8fd;
    text-align: center;
}

.testimonial__subtitle {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonial__slider {
    /* max-width: 960px; */
    margin: 0 auto;
}

.testimonial__slide {
    background: #fff;
    border-radius: 10px;
    padding: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
}

.testimonial__slide--active {
    background: #fdd700;
    color: #fff;
}

.testimonial__text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__name {
    font-weight: bold;
    color: #3f86f5;
    display: block;
}

.testimonial__slide--active .testimonial__name {
    color: #fff;
}

.testimonial__position {
    font-size: 14px;
    color: #777;
}

.testimonial__slide--active .testimonial__position {
    color: #e0e0e0;
}

/* Pagination */
.testimonial__pagination {
    margin-top: 20px;
    text-align: center;
}

.blog {
    padding: 60px 20px;
    background-color: #f9faff;
    text-align: center;
}

.blog__container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog__header {
    margin-bottom: 40px;
}

.blog__subtitle {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog__title {
    font-size: 28px;
    font-weight: 600;
}

.blog__list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.blog__item {
    background: #d9c6ad;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.blog__item:hover {
    transform: translateY(-5px);
}

.blog__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.blog__content {
    padding: 20px;
}

.blog__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.blog__meta-item {
    display: inline-block;
}

.blog__item-title {
    font-size: 18px;
    color: #222;
    margin: 0 0 10px;
    font-weight: 600;
}

.blog__description {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.cta {

    background-size: cover;
    background-position: center;
    position: relative;
    padding: 0px;
    color: #fff;
}

.cta__overlay {
    background-color: rgba(228, 155, 46, 0.85);
    padding: 60px 0;
}

.cta__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 768px) {
    .cta__container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta__subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cta__title {
    font-size: 28px;
    font-weight: 600;
}

.cta__button {
    background: #fff;
    color: #e4802e;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta__button:hover {
    background: #f1f1f1;
}

.footer {
    background: #061a3a;
    color: #fff;
    font-size: 14px;
}

.footer__overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px 20px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer__logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer__logo span {
    color: #e4802e;
}

.footer__text {
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer__social-link {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    transition: color 0.3s;
}

.footer__social-link:hover {
    color: #e4772e;
}

.footer__title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__item {
    margin-bottom: 10px;
}

.footer__post {
    display: flex;
    margin-bottom: 15px;
}

.footer__post-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.footer__post-info small {
    display: block;
    margin-bottom: 5px;
}

.footer__post-title {
    margin: 0;
}

.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer__contact-list i {
    margin-right: 10px;
}

.footer__bottom {
    background: #db6c3a;
    text-align: center;
    padding: 20px;
    font-size: 13px;
}

.cases.cas {
    padding: 90px 0;
}

.cases.cas .cases__container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.cases.cas .cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Pricing Block Styles */
.pricing {
    background-color: #f7f8fc;
    padding: 80px 20px;
    text-align: center;
}

.pricing__title {
    text-transform: uppercase;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pricing__heading {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
}

.pricing__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.pricing__card {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.pricing__plan:hover {
    transform: translateY(-10px);
}

.pricing__plan-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing__price {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.pricing__price span {
    font-size: 14px;
    color: #999;
}

.pricing__features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    color: #333;
}

.pricing__features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.pricing__features li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: #dbb434;
}

.pricing__features li.disabled {
    color: #ccc;
    text-decoration: line-through;
}

.pricing__btn {
    margin-top: auto;
    background-color: #db9334;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.pricing__btn:hover {
    background-color: #a56f1d;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing__heading {
        font-size: 24px;
    }

    .pricing__plans {
        gap: 20px;
    }
}

.pricing__cards {
    margin-top: 50px;
}

.pricing__container {
    max-width: 1145px;
    margin: 0 auto;
    padding: 0 15px;
}

.bloglist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 0;
}

.bloglist__item {
    display: flex;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    align-items: flex-start;
}

.bloglist__img {
    width: 400px;
    height: 250px;
    object-fit: cover;
}

.bloglist__content {
    padding: 20px;
    flex: 1;
}

.bloglist__meta {
    font-size: 14px;
    color: #777;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.bloglist__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #222;
}

.bloglist__text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.bloglist__btn {
    display: inline-block;
    background: #ff822e;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.bloglist__btn:hover {
    background: #cc791a;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bloglist__item {
        flex-direction: column;
    }

    .bloglist__img {
        width: 100%;
        height: auto;
    }
}

.bloglist__container {
    max-width: 900px;
    padding: 0 15px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.blog-detail {
    background-color: #f9f9ff;
    padding: 40px 20px;
    font-family: sans-serif;
    display: block;
}

.blog-detail__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.blog-detail__title {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.blog-detail__subtitle {
    font-size: 20px;
    color: #2952e8;
    margin-top: 20px;
    display: block;
}

.blog-detail__text {
    margin-bottom: 15px;
    color: #555;
    display: block;
}

.blog-detail__tags {
    margin: 15px 0;
    display: block;
}

.tag {
    background: #e0e0e0;
    display: inline-block;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 4px;
    font-size: 13px;
}

.blog-detail__author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
    background: #f1f5ff;
    border-radius: 8px;
}

.author__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author__name {
    margin: 0;
    font-weight: bold;
}

.author__desc {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

.blog-detail__comments {
    margin-top: 40px;
    display: block;
}

.comments__title {
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.comment {
    display: flex;
    margin-bottom: 20px;
}

.comment__img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment__body {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 0 5px #e0e0e0;
    flex: 1;
}

.comment__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.comment__name {
    font-weight: bold;
}

.comment__badge {
    background: #28a745;
    color: #fff;
    padding: 2px 6px;
    font-size: 11px;
    border-radius: 4px;
}

.blog__comments {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog__author {
    display: flex;
    padding: 40px;
}

.blog__tags {
    display: flex;
}

.comment__text {
    text-align: start;
}

.blog-detail__article {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-is {
    padding: 60px 20px;
    background-color: #fff;
}

.contact-is__container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-is__title {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-is__subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-is__info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-is__item {
    flex: 1 1 250px;
}

.contact-is__label {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-is__text,
.contact-is__link {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

.contact-is__link {
    color: #f7bd3f;
    text-decoration: none;
}

.contact-is__form {
    display: flex;
    max-width: 700px;
    flex-direction: column;
    gap: 20px;
}

.contact-is__row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-is__input {
    flex: 1 1 calc(33.333% - 10px);
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contact-is__textarea {
    width: auto;
    min-height: 150px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
}

.contact-is__button {
    padding: 12px 30px;
    background-color: #f7923f;
    color: #fff;
    font-weight: 600;
    border: none;
    width: max-content;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(247, 189, 63, 0.2);
    transition: 0.3s ease;
    cursor: pointer;
}

.contact-is__button:hover {
    background-color: #d07c2d;
}

.contact-is__socials {
    margin-top: 40px;
}

.contact-is__follow {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-is__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-is__social-link {
    color: #3f63f7;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.contact-is__social-link:hover {
    text-decoration: underline;
}

.testimonial {
    padding: 60px 20px;
    background-color: #f7f9fc;
}

.testimonial__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonial__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial__item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial__photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
}

.testimonial__name {
    font-weight: 600;
    color: #111;
}

.testimonial__role {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial__list {
        flex-direction: column;
        align-items: center;
    }
}

.testimonial {
    padding: 60px 20px;
    background-color: #f7f9fc;
}

.testimonial__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.testimonial__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial__item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.testimonial__text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial__photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
}

.testimonial__name {
    font-weight: 600;
    color: #111;
}

.testimonial__role {
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .testimonial__list {
        flex-direction: column;
        align-items: center;
    }
}

.faq {
    padding: 60px 20px;
    background-color: #fff;
}

.faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.faq__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq__item {
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 20px;
    background-color: #fdfdfd;
    transition: all 0.3s ease;
}

.faq__question {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
    color: #1a1a1a;
}

.faq__question:hover {
    color: #ffa600;
}

.faq__answer {
    display: none;
    padding-top: 10px;
    font-size: 0.95rem;
    color: #444;
}

.faq__answer--visible {
    display: block;
}

.terms {
    padding: 90px 0;
}

.terms__container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.terms li {
    margin-bottom: 10px;
}

.cookie {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie__container {
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.cookie__text {
    font-size: 0.95rem;
    color: #0c0b0b;
    flex: 1 1 auto;
}

.cookie__link {
    color: #ff8800;
    text-decoration: underline;
    margin-left: 5px;
}

.cookie__btn {
    background-color: #ffa600;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cookie__btn:hover {
    background-color: #b36b00;
}

.cookie--hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

@media screen and (max-width:768px) {
    .about-us__features {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        flex: 1;
    }
    .video-div__container {
        display: flex
    ;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        flex-direction: column;
    }
    .testimonial__item {
        background-color: #ffffff;
        border-radius: 10px;
        padding: 25px;
        width: calc(100% - 50px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-align: left;
    }
}