body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.header-bg {
    position: relative;
    min-height: 400px;
    color: #fff;
    height: 90vh;
    overflow: hidden;
}
.header-video-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.header-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px 60px 60px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo {
    font-weight: bold;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
}
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nav-right {
    font-size: 1.1rem;
    text-decoration: underline;
}
/* Menu bar and nav styles */
.menu-bar {
    width: 100%;
    margin-top: 14px;
    display: flex;
    justify-content: center;
}
.main-nav {
    display: flex;
    gap: 34px;
    position: relative;
}
.main-nav > li {
    list-style: none;
    position: relative;
}
.main-nav > li > a {
    color: #fff;
    text-decoration: underline;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
    padding: 10px 12px;
    display: block;
    transition: color 0.2s;
}
.main-nav > li:hover > a,
.main-nav > li:focus-within > a {
    color: #ffe8c2;
}
/* Submenu styles */
.submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    background: rgba(0,0,0,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.14);
    z-index: 10;
    border-radius: 8px;
}
.submenu li {
    list-style: none;
}
.submenu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    transition: background 0.16s;
}
.submenu a:hover, .submenu a:focus {
    background: #8D6B2B;
    color: #fff;
}
.main-nav > li:hover > .submenu,
.main-nav > li:focus-within > .submenu {
    display: block;
}
/* Arrow for parent menu */
.main-nav > li.has-submenu > a::after {
    content: " ▼";
    font-size: 0.85em;
}
/* Footer actions row */
.footer-actions-row {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 3;
    padding-left: 60px;
    padding-right: 60px;
}
.footer-maintext {
    max-width: 600px;
}
.main-headline {
    margin: 0;
    font-size: 3.1rem;
    font-weight: 400;
    line-height: 1.08;
}
.main-headline b,
.main-headline strong {
    font-weight: bold;
    font-style: italic;
}
.subtext {
    margin-top: 12px;
    font-size: 1.2rem;
    font-style: italic;
    color: #e9e9e9;
}
.actions-fixed {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.btn-main {
    background: #8D6B2B;
    color: #fff;
    padding: 15px 32px;
    border: none;
    border-radius: 22px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 12px;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-main:hover {
    background: #6d5221;
}
.btn-secondary {
    background: #fff;
    color: #8D6B2B;
    padding: 15px 32px;
    border: none;
    border-radius: 22px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: block;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
    background: #f2e7d2;
    color: #6d5221;
}
/* HOW DOES IT WORK section */
.how-works-section {
    width: 100%;
    padding: 48px 0 32px 0;
    background: #fff;
    text-align: center;
}
.how-works-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
}
.how-works-title, .who-title {
    color: #8D6B2B;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0 0 36px 0;
}
.how-works-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.how-works-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.how-works-icon {
    margin-bottom: 12px;
}
.how-works-label {
    color: #8D6B2B;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.how-works-arrow {
    display: flex;
    align-items: center;
}
.who-title {
    color: #8D6B2B;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 24px;
    margin-bottom: 28px;
}
.who-icons {
    display: flex;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}
.who-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 130px;
}
.who-avatar {
    margin-bottom: 10px;
}
.who-label {
    color: #8D6B2B;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}
/* Key Features Section */
.key-features-section {
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 40px 0 60px 0;
}
.key-features-title {
    color: #8D6B2B;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 38px;
}
.key-features-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 36px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.feature-item {
    background: #f7f7f7;
    border-radius: 14px;
    overflow: hidden;
    width: 245px;
    min-width: 190px;
    max-width: 100%;
    box-shadow: 0 4px 24px rgba(40,30,0,0.07);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}
.feature-img {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.feature-caption {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    text-align: left;
    padding: 16px 16px 18px 16px;
    background: linear-gradient(0deg,rgba(0,0,0,0.72) 80%,rgba(0,0,0,0.09) 100%);
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    pointer-events: none;
}
/* Responsive for KEY FEATURES */
@media (max-width: 900px) {
    .header-content { padding: 25px 10px 40px 10px; }
    .footer-actions-row { padding-left: 10px; padding-right: 10px; bottom: 16px; }
    .main-headline { font-size: 2.1rem; }
    .top-bar { padding-right: 36px; }
    .how-works-title, .who-title {
        font-size: 1.17rem;
    }
    .how-works-steps {
        gap: 16px;
    }
    .who-icons {
        gap: 20px;
    }
    .key-features-title {
        font-size: 1.5rem;
        margin-bottom: 22px;
    }
    .key-features-list {
        gap: 20px;
    }
    .feature-item {
        width: 44vw;
        min-width: 150px;
    }
    .feature-img {
        height: 140px;
    }
    .feature-caption {
        font-size: 1rem;
        padding: 12px 10px 14px 12px;
    }
}
@media (max-width: 700px) {
    .menu-bar { justify-content: flex-start; }
    .main-nav {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.98);
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        z-index: 30;
        gap: 0;
    }
    .main-nav.show {
        display: flex;
    }
    .main-nav > li {
        width: 100%;
    }
    .main-nav > li > a {
        font-size: 1.2rem;
        padding: 16px 18px;
        border-bottom: 1px solid #333;
    }
    .submenu {
        position: static;
        background: #282828;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
    }
    .main-nav > li.has-submenu > a::after {
        content: " ▶";
        float: right;
    }
    .main-nav > li.open > .submenu {
        display: block !important;
    }
    .menu-toggle {
        display: none;
    }
    /* --------- Arrange footer-maintext above actions-fixed --------- */
    .footer-actions-row {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        padding-left: 10px;
        padding-right: 10px;
        z-index: 3;
        gap: 18px;
    }
    .footer-maintext {
        max-width: none;
        margin-bottom: 0;
        align-items: flex-start;
        text-align: left;
    }
    .actions-fixed {
        align-items: flex-start !important;   /* Sát lề trái */
    }
    /* Đẩy ENG lên trên cùng bên phải, cách menu phía dưới một khoảng */
    .nav-right {
        position: fixed;
        top: 10px;
        right: 16px;
        z-index: 40;
        background: rgba(0,0,0,0.5);
        padding: 6px 16px;
        border-radius: 16px;
        font-size: 1.1rem;
        text-align: right;
        margin-bottom: 30px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    }
    .top-bar {
        align-items: flex-start;
    }
    .menu-bar {
        margin-top: 56px;
    }
    .how-works-section {
        padding: 36px 0 24px 0;
    }
    .how-works-steps {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 34px;
    }
    .how-works-arrow {
        transform: rotate(90deg);
        margin: 6px 0;
    }
    /* Responsive "Who is this for" - 2 icon per row, centered */
    .who-icons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 18px;
        width: 100%;
    }
    .who-item {
        flex: 0 0 45%;
        max-width: 160px;
        min-width: 120px;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
        margin-bottom: 0;
    }
    /* Key features mobile */
    .key-features-section {
        padding: 28px 0 36px 0;
    }
    .key-features-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
        padding: 0 4vw;
    }
    .feature-item {
        width: 98vw;
        max-width: 370px;
        min-width: 0;
    }
    .feature-img {
        height: 38vw;
        min-height: 250px;
        max-height: 420px;
    }
    .feature-caption {
        font-size: 1rem;
        padding: 12px 10px 14px 12px;
    }
}

/* DISCOVER & LIBRARY SECTION */
.discover-library-section {
    width: 100%;
    background: #fff;
    padding: 48px 0 60px 0;
}
.discover-library-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 56px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 18px;
    flex-wrap: wrap;
}
.discover-wood {
    flex: 1 1 540px;
    min-width: 330px;
    max-width: 600px;
}
.timber-library {
    flex: 1 1 350px;
    min-width: 300px;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.discover-title, .library-title {
    color: #8D6B2B;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.03;
    margin-bottom: 18px;
    text-align: left;
}
.library-title {
    text-align: center;
}
.discover-filters {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}
.discover-filter {
    border: 2px solid #8D6B2B;
    background: #fff;
    color: #8D6B2B;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: bold;
    padding: 10px 22px;
    cursor: pointer;
    outline: none;
    margin-bottom: 4px;
    transition: background 0.14s, color 0.14s;
}
.discover-filter:hover, .discover-filter:focus {
    background: #8D6B2B;
    color: #fff;
}
.discover-list {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: nowrap;
}
.discover-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 18px rgba(40,30,0,0.09);
    width: 170px;
    padding: 12px 10px 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.discover-card img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}
.discover-card-title {
    font-size: 1rem;
    color: #8D6B2B;
    margin-bottom: 2px;
    font-weight: bold;
    text-align: center;
}
.discover-card-sub {
    color: #8D6B2B;
    font-size: 0.98rem;
    font-style: italic;
    margin-bottom: 6px;
    text-align: center;
}
.discover-card-desc {
    font-size: 0.97rem;
    color: #6d5221;
    text-align: center;
    margin-top: 4px;
}
.arrow-next {
    font-size: 2.1rem;
    color: #8D6B2B;
    margin: 0 4px;
    font-weight: bold;
}
.library-desc {
    color: #644902;
    font-size: 1.05rem;
    margin-bottom: 18px;
    margin-top: 10px;
    text-align: center;
    max-width: 340px;
}
.library-map-wrap {
    position: relative;
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
}
.library-map {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(40,30,0,0.08);
    margin-bottom: 0;
}
.get-directions-btn {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    background: #8D6B2B;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 16px 46px;
    font-size: 1.07rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(40,30,0,0.13);
    transition: background 0.16s;
}
.get-directions-btn:hover {
    background: #644902;
}

/* Responsive for DISCOVER & LIBRARY */
@media (max-width: 1100px) {
    .discover-library-wrap {
        flex-direction: column;
        align-items: center;
        gap: 42px;
    }
    .discover-wood, .timber-library {
        max-width: 700px;
        min-width: 0;
        width: 100%;
    }
    .discover-list {
        justify-content: center;
    }
}
@media (max-width: 700px) {
    .discover-library-section {
        padding: 28px 0 36px 0;
    }
    .discover-title, .library-title {
        font-size: 2rem;
        text-align: center;
    }
    .discover-filters {
        justify-content: center;
        gap: 10px;
        margin-bottom: 18px;
    }
    .discover-list {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
    }
    .discover-card {
        width: 90vw;
        max-width: 250px;
        min-width: 0;
        margin-bottom: 8px;
    }
    .discover-card img {
        width: 90vw;
        max-width: 230px;
        min-width: 0;
        height: 90px;
    }
    .arrow-next {
        display: none;
    }
    .library-desc {
        font-size: 1rem;
        max-width: 100vw;
    }
    .library-map-wrap {
        max-width: 98vw;
    }
    .library-map {
        width: 100%;
        min-width: 0;
        max-width: 420px;
    }
    .get-directions-btn {
        position: static;
        left: unset; right: unset; bottom: unset;
        transform: none;
        margin: 18px auto 0 auto;
        display: block;
        width: 100%;
        max-width: 320px;
        padding: 15px 0;
    }
}

/* USER FEEDBACK SECTION */
.user-feedback-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.user-feedback-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.user-feedback-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.52);
    z-index: 1;
}
.user-feedback-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 54px 18px 58px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.user-feedback-title {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 34px;
    text-align: left;
    width: 100%;
    max-width: 1200px;
}
.user-feedback-list {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
}
.user-feedback-card {
    background: rgba(255,255,255,0.85);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(40,30,0,0.07);
    min-width: 280px;
    max-width: 370px;
    flex: 1 1 320px;
    padding: 26px 26px 24px 26px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.user-feedback-avatar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    width: 100%;
}
.avatar-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #8D6B2B;
    display: inline-block;
    position: relative;
}
.avatar-icon:before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 12px; top: 8px;
}
.user-feedback-name {
    color: #8D6B2B;
    font-weight: bold;
    font-size: 1.08rem;
    display: block;
}
.user-feedback-role {
    color: #7d6b44;
    font-size: 0.98rem;
    margin-left: 10px;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0.93;
    text-transform: uppercase;
}
.user-feedback-quote {
    font-style: italic;
    color: #8D6B2B;
    font-size: 1.28rem;
    margin-bottom: 20px;
    margin-top: 12px;
    line-height: 1.35;
    min-height: 70px;
}
.user-feedback-btn {
    background: #8D6B2B;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 12px 36px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.16s;
}
.user-feedback-btn:hover {
    background: #644902;
}

/* Responsive for USER FEEDBACK */
@media (max-width: 1100px) {
    .user-feedback-content, .user-feedback-title, .user-feedback-list {
        max-width: 100vw;
    }
    .user-feedback-list {
        gap: 16px;
    }
    .user-feedback-title {
        font-size: 2rem;
    }
}
@media (max-width: 700px) {
    .user-feedback-section {
        min-height: 420px;
    }
    .user-feedback-content {
        padding: 28px 4vw 26px 4vw;
    }
    .user-feedback-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
        text-align: center;
    }
    .user-feedback-list {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
    .user-feedback-card {
        min-width: 0;
        width: 98vw;
        max-width: 380px;
        padding: 18px 10px 18px 14px;
    }
    .user-feedback-avatar {
        gap: 9px;
    }
    .user-feedback-quote {
        font-size: 1.1rem;
        min-height: 0;
    }
}

/* Thêm hiệu ứng slide cho user-feedback-card */
.user-feedback-list {
    display: flex;
    gap: 34px;
    flex-wrap: nowrap;  /* Không wrap để slide tốt */
    justify-content: flex-start;
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #8D6B2B #e5e5e5;
}
.user-feedback-card {
    min-width: 320px;
    max-width: 370px;
    margin-right: 24px;
    flex-shrink: 0;
    /* ... các style khác giữ nguyên ... */
}
.user-feedback-list::-webkit-scrollbar {
    height: 8px;
}
.user-feedback-list::-webkit-scrollbar-thumb {
    background: #8D6B2B;
    border-radius: 4px;
}
.user-feedback-list::-webkit-scrollbar-track {
    background: #e5e5e5;
    border-radius: 4px;
}

/* Ẩn thanh cuộn trên mobile, slide bằng chạm */
@media (max-width: 700px) {
    .user-feedback-list {
        gap: 12px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }
    .user-feedback-card {
        min-width: 82vw;
        max-width: 94vw;
        width: 88vw;
        margin-right: 10px;
        margin-left: 0;
    }
    .user-feedback-list::-webkit-scrollbar {
        display: none;
    }
}

/* LATEST NEWS & DOWNLOAD SECTION */
.latest-download-section {
    width: 100%;
    background: #fff;
    padding: 48px 0 64px 0;
}
.latest-download-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 62px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 18px;
    flex-wrap: wrap;
}
.latest-news-block {
    flex: 1 1 590px;
    min-width: 340px;
    max-width: 640px;
}
.download-app-block {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.latest-news-title, .download-app-title {
    color: #8D6B2B;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.03;
    margin-bottom: 18px;
    text-align: left;
}
.download-app-title { text-align: center; }
.latest-news-filters {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.latest-news-filter {
    border: 2px solid #8D6B2B;
    background: #fff;
    color: #8D6B2B;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: bold;
    padding: 10px 22px;
    cursor: pointer;
    outline: none;
    margin-bottom: 4px;
    transition: background 0.14s, color 0.14s;
}
.latest-news-filter:hover, .latest-news-filter:focus {
    background: #8D6B2B;
    color: #fff;
}
.latest-news-list {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 10px;
    flex-wrap: nowrap;
}
.latest-news-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 18px rgba(40,30,0,0.09);
    width: 170px;
    padding: 12px 10px 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.latest-news-card img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 8px;
}
.latest-news-head {
    font-size: 1rem;
    color: #8D6B2B;
    margin-bottom: 2px;
    font-weight: bold;
    text-align: center;
    font-style: italic;
}
.latest-news-desc {
    font-size: 0.97rem;
    color: #6d5221;
    text-align: center;
    margin-top: 4px;
}
.news-arrow {
    font-size: 2.1rem;
    color: #8D6B2B;
    margin: 0 4px;
    font-weight: bold;
    align-self: center;
}
/* Download App block */
.download-app-desc {
    color: #644902;
    font-size: 1.13rem;
    margin-bottom: 26px;
    margin-top: 10px;
    text-align: center;
    max-width: 340px;
}
.download-app-stores {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    align-items: center;
    width: 100%;
}
.store-btn img {
    width: 190px;
    max-width: 100%;
    display: block;
}
.download-instructions-btn {
    border: 2px solid #8D6B2B;
    background: #fff;
    color: #8D6B2B;
    border-radius: 22px;
    padding: 12px 32px;
    font-size: 1.07rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 18px;
    transition: background 0.14s, color 0.14s;
}
.download-instructions-btn:hover, .download-instructions-btn:focus {
    background: #8D6B2B;
    color: #fff;
}
/* Responsive */
@media (max-width: 1100px) {
    .latest-download-wrap {
        flex-direction: column;
        align-items: center;
        gap: 42px;
    }
    .latest-news-block, .download-app-block {
        max-width: 700px;
        min-width: 0;
        width: 100%;
    }
    .latest-news-list {
        justify-content: center;
    }
}
@media (max-width: 700px) {
    .latest-download-section {
        padding: 28px 0 36px 0;
    }
    .latest-news-title, .download-app-title {
        font-size: 2rem;
        text-align: center;
    }
    .latest-news-filters {
        justify-content: center;
        gap: 10px;
        margin-bottom: 18px;
    }
    .latest-news-list {
        flex-wrap: wrap;
        gap: 14px;
        justify-content: center;
    }
    .latest-news-card {
        width: 90vw;
        max-width: 250px;
        min-width: 0;
        margin-bottom: 8px;
    }
    .latest-news-card img {
        width: 90vw;
        max-width: 230px;
        min-width: 0;
        height: 90px;
    }
    .news-arrow {
        display: none;
    }
    .download-app-desc {
        font-size: 1rem;
        max-width: 100vw;
    }
    .download-app-stores .store-btn img {
        width: 160px;
    }
    .download-instructions-btn {
        width: 100%;
        max-width: 320px;
        padding: 15px 0;
    }
}


/* FAQ SECTION */
.faq-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}
.faq-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.faq-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30, 30, 30, 0.48);
    z-index: 1;
}
.faq-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 18px 48px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 34px;
    text-align: left;
    width: 100%;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 34px;
}
.faq-item {
    width: 100%;
}
.faq-question {
    width: 100%;
    font-size: 2rem;
    background: none;
    color: #fff;
    border: none;
    outline: none;
    text-align: left;
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-style: italic;
    cursor: pointer;
    transition: color 0.18s;
}
.faq-arrow {
    font-size: 2.1rem;
    margin-left: 10px;
    color: #fff;
    pointer-events: none;
}
.faq-more-btn {
    margin-top: 24px;
    border: 2px solid #8D6B2B;
    background: #fff;
    color: #8D6B2B;
    border-radius: 22px;
    padding: 12px 32px;
    font-size: 1.07rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.14s, color 0.14s;
    align-self: flex-start;
}
.faq-more-btn:hover, .faq-more-btn:focus {
    background: #8D6B2B;
    color: #fff;
}

/* Responsive FAQ */
@media (max-width: 900px) {
    .faq-content { padding: 32px 10px 34px 10px;}
    .faq-title { font-size: 2.1rem; }
    .faq-question { font-size: 1.2rem; }
}
@media (max-width: 700px) {
    .faq-section { min-height: 320px; }
    .faq-content { padding: 20px 4vw 20px 4vw; }
    .faq-title { font-size: 1.3rem; margin-bottom: 18px; }
    .faq-list { gap: 10px; margin-bottom: 18px; }
    .faq-question { font-size: 1.07rem; }
    .faq-arrow { font-size: 1.4rem;}
    .faq-more-btn { width: 100%; max-width: 320px; padding: 14px 0; }
}

/* ABOUT & CONTACT SECTION */
.about-contact-section {
    width: 100%;
    background: #fff;
    padding: 48px 0 64px 0;
}
.about-contact-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 76px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 18px;
    flex-wrap: wrap;
}
.about-partners-block {
    flex: 1 1 520px;
    min-width: 320px;
    max-width: 620px;
    display: flex;
    flex-direction: column;
}
.about-title {
    color: #8D6B2B;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.about-desc {
    color: #3c2d0f;
    font-size: 1.07rem;
    margin-bottom: 36px;
    line-height: 1.55;
}
.partners-title {
    color: #8D6B2B;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 14px;
    margin-top: 6px;
    letter-spacing: 0.02em;
}
.partners-list {
    display: flex;
    gap: 18px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.partners-list img {
    width: 140px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
}
.contact-form-block {
    flex: 1 1 330px;
    min-width: 280px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-title {
    color: #8D6B2B;
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
}
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}
.contact-input {
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 16px;
    border: 2px solid #8D6B2B;
    border-radius: 10px;
    margin-bottom: 0;
    background: #fff;
    color: #3c2d0f;
    outline: none;
    transition: border 0.14s;
    font-family: inherit;
}
.contact-input:focus {
    border: 2px solid #3c2d0f;
}
.contact-textarea {
    min-height: 78px;
    resize: vertical;
}
.contact-submit-btn {
    background: #8D6B2B;
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 12px 48px;
    font-size: 1.07rem;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.14s;
    margin-top: 8px;
}
.contact-submit-btn:hover, .contact-submit-btn:focus {
    background: #644902;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-contact-wrap {
        flex-direction: column;
        align-items: center;
        gap: 44px;
    }
    .about-partners-block, .contact-form-block {
        max-width: 700px;
        min-width: 0;
        width: 100%;
    }
    .partners-list {
        justify-content: flex-start;
    }
}
@media (max-width: 700px) {
    .about-contact-section {
        padding: 28px 0 36px 0;
    }
    .about-title { font-size: 1.4rem; }
    .partners-title { font-size: 1.17rem; }
    .about-desc { font-size: 1rem; }
    .partners-list {
        gap: 7px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .partners-list img {
        width: 32vw;
        min-width: 90px;
        height: 68px;
        max-width: 110px;
    }
    .contact-title { font-size: 1.07rem; }
    .contact-form { gap: 10px; }
    .contact-input { font-size: 1rem; padding: 10px 12px; }
    .contact-submit-btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 0;
        font-size: 1rem;
        margin-top: 4px;
    }
}

/* FOOTER SECTION */
.main-footer {
    background: #7B580E;
    color: #fff;
    font-family: inherit;
    border-top: 1px solid #A0844D;
}
.footer-top {
    padding: 44px 0 22px 0;
    width: 100%;
}
.footer-cols {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    flex-wrap: wrap;
}
.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 300px;
    margin-bottom: 28px;
}
.footer-col.about-col,
.footer-col.links-col {
    min-width: 210px;
}
.footer-col-title {
    font-size: 1.35rem;
    font-weight: bold;
    margin-bottom: 16px;
    border-bottom: 4px solid #fff;
    display: inline-block;
    padding-bottom: 3px;
    letter-spacing: 0.02em;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li {
    margin-bottom: 8px;
    border-bottom: 1px solid #bebebe44;
    padding-bottom: 6px;
    font-size: 1.07rem;
}
.footer-links li:last-child {
    border-bottom: none;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.14s;
}
.footer-links a:hover {
    color: #ffe8c2;
}
.footer-contact-info {
    font-size: 1.05rem;
    margin-bottom: 13px;
    line-height: 1.5;
}
.footer-contact-list {
    margin-bottom: 11px;
}
.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.06rem;
    margin-bottom: 4px;
}
.footer-contact-icon {
    font-size: 1.2em;
    display: inline-block;
    min-width: 22px;
}
.footer-map-img {
    width: 100%;
    max-width: 230px;
    border-radius: 12px;
    margin-top: 12px;
    display: block;
}
.footer-social-icons {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    margin-top: 10px;
    justify-content: flex-end;
}
.footer-social-icon img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    box-sizing: border-box;
    transition: background 0.14s;
}
.footer-social-icon img:hover {
    background: #ffe8c2;
}
.footer-lang-select {
    position: relative;
    color: #fff;
    font-size: 1.08rem;
    margin-top: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}
.lang-arrow {
    font-size: 1em;
    margin-left: 4px;
}
.footer-bottom {
    background: #fff;
    color: #7B580E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 34px 10px 34px;
    font-size: 1.06rem;
    border-top: 1px solid #A0844D;
    flex-wrap: wrap;
}
.footer-copyright {
    font-style: italic;
    font-size: 1.04rem;
}
.footer-logos {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-logos img {
    height: 38px;
    max-width: 103px;
    background: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    object-fit: contain;
}

/* Responsive Footer */
@media (max-width: 1100px) {
    .footer-cols { gap: 34px; }
    .footer-bottom { flex-direction: column; gap: 13px; align-items: flex-start; }
}
@media (max-width: 700px) {
    .footer-top {
        padding: 24px 0 12px 0;
    }
    .footer-cols {
        flex-direction: column;
        gap: 14px;
        padding: 0 10px;
    }
    .footer-col {
        max-width: none;
        min-width: 0;
        margin-bottom: 12px;
    }
    .footer-social-icons {
        gap: 14px;
        margin-bottom: 12px;
        justify-content: flex-start;
    }
    .footer-bottom {
        padding: 10px 5vw 10px 5vw;
        flex-direction: column;
        align-items: flex-start;
        font-size: 1rem;
    }
    .footer-logos img {
        height: 28px;
        max-width: 72px;
        padding: 1px 2px;
    }
    .footer-lang-select {
        margin-top: 6px;
        font-size: 1rem;
        justify-content: flex-start;
    }
}