:root {
    --primary-green: #518910;
    --dark-green: #6BAB35;
    --text-dark: #25211F;
    --text-gray: #5F5E5E;
    --light-bg: #F9F9F9;
}

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

body {
    font-family: "Lexend", sans-serif;
    color: var(--text-dark);
}

.text-center {
    text-align: center;
}

.attributes {
    padding: 88px 0;
}

.attributes-icon {
    margin-bottom: 32px;
}

.attributes-title {
    color: #25211F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    margin-bottom: 12px;
}

.attributes-description {
    color: #5F5E5E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 162.5% */
}

.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav {
    display: block;
}

.nav-menu {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    line-height: 24px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-green);
}

.contact-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 4px 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white !important;
    z-index: 9999;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.mobile-menu-content {
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
}

.mobile-menu-logo img {
    height: 35px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-nav {
    padding: 30px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin-bottom: 25px;
}

.mobile-menu-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s;
    display: block;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
    color: var(--primary-green);
}

.mobile-menu-footer-links {
    border-top: 1px solid #E0E0E0;
    padding-top: 20px;
    margin-bottom: 30px;
}

.mobile-menu-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-footer-links li {
    margin-bottom: 15px;
}

.mobile-menu-footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: color 0.3s;
}

.mobile-menu-footer-links a:hover {
    color: var(--primary-green);
}

.mobile-menu-buttons {
    position: absolute;
    bottom: 153px;
    padding: 16px 24px;
    margin: 0 -20px;
    border-top: 1px solid #F3F5F5;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.04), 0 -2px 6px 0 rgba(0, 0, 0, 0.04), 0 -10px 20px 0 rgba(0, 0, 0, 0.04);
}

.mobile-menu-buttons button:first-of-type {
    margin-bottom: 12px;
}

.mobile-contact-btn,
.mobile-catalog-btn {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Lexend", sans-serif;
}

.mobile-contact-btn {
    background: var(--primary-green);
    color: white;
    border: none;
}

.mobile-contact-btn:hover {
    background: var(--dark-green);
}

.mobile-catalog-btn {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.mobile-catalog-btn:hover {
    background: var(--primary-green);
    color: white;
}

@media screen and (max-width: 991px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    .desktop-nav,
    nav:not(.mobile-nav) {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 60px 0;
    background-color: #E4DED9;
    /*background: linear-gradient(1deg, rgba(227, 221, 216, 0.00) 14.69%, #E3DDD8 99.1%);*/
    /*background:
            linear-gradient(180deg, rgba(227, 221, 216, 0.00) 86.03%, #E3DDD8 100%),
            linear-gradient(270deg, rgba(227, 221, 216, 0.00) 45.42%, #E3DDD8 75.86%),
            url('../images/bg.jpg') center / cover no-repeat,
            linear-gradient(0deg, #CFC9C4 0%, #CFC9C4 100%),
            #71BD44;*/

    position: relative;
    overflow: hidden;
}

.hero .row {
    min-height: 594px;
    align-self: stretch;
    height: 100%;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 500;
    line-height: 64px;
    color: var(--text-dark);
    margin-bottom: 56px;
}

.hero-content p {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    color: #191818;
    margin-bottom: 16px;
    opacity: 0.8;
}

.hero-btn {
    background: var(--primary-green);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.hero-btn-inverted {
    color: var(--primary-green);
    background: transparent;
    border: 1px solid var(--primary-green);
}

.hero-btn:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
}

.circle-green {
    position: absolute;
    display: flex;
    padding: 12px 12px 16px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    aspect-ratio: 1/1;

    background: rgba(81, 137, 16, 0.72);
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.10), 0 0 40px 0 rgba(255, 255, 255, 0.08) inset;
    backdrop-filter: blur(16px);
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.95;
}

.circle-size-s {
    border-radius: 60px;
    width: 120px;
    height: 120px;
    top: -15px;
    left: 95px;
}

.circle-size-m {
    border-radius: 86px;
    width: 172px;
    height: 172px;
    top: auto;
    bottom: 18px;
    left: 170px;
}

.circle-size-l {
    border-radius: 108px;
    width: 217px;
    height: 217px;
    top: -40px;
    left: 480px;
}

@media screen and (max-width: 1024px) {
    .circle-size-s {
        top: -15px;
        left: 25px;
    }

    .circle-size-m {
        top: auto;
        bottom: -5px;
        left: 100px;
    }

    .circle-size-l {
        top: -40px;
        left: 290px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 10px;
    }

    .material-circle {
        min-width: initial !important;
    }

    .item-image {
        /*max-height: 320px;
        height: 100%;*/
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .circle-size-s {
        top: 75px;
        left: -5px;
    }

    .circle-size-m {
        top: auto;
        bottom: 45px;
        left: auto;
        right: -10px;
    }

    .circle-size-l {
        display: none;
    }
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-size: 14px;
    font-weight: 500;
}

.badge-1 {
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
}

.badge-2 {
    bottom: 60px;
    left: -20px;
    color: var(--text-dark);
}

.badge-3 {
    bottom: 30px;
    right: 50px;
    color: var(--text-dark);
}

/* Features Cards */
.features {
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    background: linear-gradient(1deg, rgba(227, 221, 216, 0.00) 14.69%, #E3DDD8 99.1%), #FFF;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
}

.feature-card p strong {
    color: var(--text-dark);
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list li {
    padding: 5px 0;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
}

.feature-list li::before {
    content: ' ';
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    margin-right: 8px;
    display: inline-block;
    border-radius: 50%;
}

/* Materials Section */
.materials {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 28px;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 64px;
}

.material-item {
    text-align: center;
    margin-bottom: 30px;
    border-radius: 16px;
    background-color: #FAF9F8;
    padding: 40px;
}

.material-circle {
    width: 100%;
    height: 100%;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.material-circle:hover {
    transform: scale(1.1);
}

.material-circle img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
}

.material-name {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-dark);
    margin-top: 10px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: white;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: var(--text-gray);
}

.comparison {
    padding: 88px 0;
    background: linear-gradient(180deg, #FAF9F8 0%, rgba(255, 255, 255, 0.00) 100%);
}

.comparison-border {
    border-radius: 16px;
    padding: 24px;
    background-color: #7BA148;
}

.comparison table {
    width: 100%;
}

.comparison-separator {
    height: 1px;
    padding: 0 30px !important;
}

.comparison-separator > div {
    background: #E3E3E3 !important;
    height: 1px;
}

.comparison table th {
    background: #7BA148;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    padding: 12px 0;
}

.comparison table > tbody > tr:first-of-type > th:first-child,
.comparison table > tbody > tr:first-of-type > th:nth-child(2)
{
    vertical-align: top;
}

.comparison table td {
    background: #ffffff;
    color: #25211F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    padding: 34px 0;
}

.comparison table tr.first-row td:first-of-type {
    border-top-left-radius: 16px;
}

.comparison table tr.first-row td:last-of-type {
    border-top-right-radius: 16px;
}

.comparison table tr td:last-of-type {
    font-weight: 800;
    color: #7BA148;
}

.comparison-border table tr td:last-of-type svg path {
    fill: #7BA148;
}

.comparison table tr.last-row td:first-of-type {
    border-bottom-left-radius: 16px;
}

.comparison table tr.last-row td:last-of-type {
    border-bottom-right-radius: 16px;
}

.opinion {
    padding: 88px 0;
}

.opinion-content {
    color: #25211F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}

.opinion-stars {
    color: #25211F;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 144.444% */
    margin: 16px 0;
}

.opinion-stars span {
    margin-left: 16px;
}

.opinion-author {
    color: #5F5E5E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px; /* 162.5% */
}

/* Products Section */
.products {
    padding: 88px 0;
}

.item-image {
    display: flex;
    padding: 48px 40px 40px 40px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex: 1 0 0;
    aspect-ratio: 1/1;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #e0e0e0;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-desc {
    font-size: 14px;
    color: var(--text-gray);
}

/* Classification Tables */
.classification {
    padding: 60px 0;
    background: white;
}

.class-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.class-table-header {
    background: var(--primary-green);
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    text-align: center;
}

.class-table-body {
    padding: 20px;
}

.class-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.class-row:last-child {
    border-bottom: none;
}

/* Competition Table */
.competition {
    padding: 60px 0;
    background: var(--light-bg);
}

.comp-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comp-table table {
    width: 100%;
    border-collapse: collapse;
}

.comp-table thead {
    background: var(--primary-green);
    color: white;
}

.comp-table th,
.comp-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comp-table tbody tr:hover {
    background: #f9f9f9;
}

.check {
    color: var(--primary-green);
    font-size: 20px;
}

/* Gallery Section Styles */
.gallery {
    padding: 88px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.gallery .container {
    position: relative;
}

/* Header with title and navigation */
.gallery-header {
    position: relative;
    margin-bottom: 64px;
}

/* Navigation */
.gallery-navigation {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.gallery-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-arrow:hover {
    background: #F5F5F5;
    border-color: #25211F;
}

.gallery-arrow:hover svg path {
    stroke: #518910;
}

.gallery-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Gallery Carousel */
.gallery-wrapper {
    overflow: hidden;
    margin: 0 -10px;
}

.gallery-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 0 10px;
}

.gallery-container {
    display: flex;
    gap: 20px;
}

.gallery-item {
    width: calc(33% - 20px);

    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.gallery-sub {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

/* Buttons */
.gallery-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.hero-btn {
    background: #518910;
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: "Lexend", sans-serif;
}

.hero-btn:hover {
    background: #6BAB35;
    transform: translateY(-2px);
}

.hero-btn-inverted {
    background: transparent;
    color: #518910;
    border: 1px solid #518910;
}

.hero-btn-inverted:hover {
    background: #518910;
    color: white;
}

.products-card {
    background: #E1E1DF;
    border-radius: 16px;
}

.products-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.products-card-label {
    text-align: center;
    padding-bottom: 20px;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .gallery-item {
        min-width: calc(33.333% - 13.33px);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .gallery-item {
        min-width: calc(50% - 10px);
        height: 200px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .gallery-navigation {
        align-self: flex-end;
    }

    .gallery-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 20px;
    }

    .gallery-buttons button {
        width: 100%;
        max-width: 300px;
        display: block;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        min-width: calc(100% - 20px);
        height: 250px;
    }
}

/* Footer Styles */
.footer {
    background: #FAF9F8;
    color: #5F5E5E;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-image: url("../images/footer.png");
    background-repeat: no-repeat;
    background-position: right;
}

.footer-left h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #25211F;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.contact-item svg {
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-left {
    float: left;
    display: inline-block;
    padding: 64px 0;
}

.footer-right {
    float: right;
    display: inline-block;
}

.footer-bottom-bar {
    background: rgba(81, 137, 16, 0.68);
    box-shadow: 0 0 40px 0 rgba(255, 255, 255, 0.08) inset, 0 20px 40px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(96px);
    padding: 32px 0;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 5px;
}

.footer-logo span {
    font-size: 11px;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.footer-bottom {
    padding: 15px 0px;
}

.footer-links {
    display: flex;
    gap: 30px;
    font-size: 14px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-logo {
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.logo-text {
    font-size: 42px;
    font-weight: 600;
    color: white;
    position: relative;
    letter-spacing: -1px;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    opacity: 0.9;
}

.logo-tagline {
    font-size: 11px;
    color: white;
    opacity: 0.9;
    margin-top: -5px;
    letter-spacing: 0.5px;
}

.footer-map {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 350px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"%3E%3Crect fill="%23f0f0f0" width="400" height="300"/%3E%3Cpath d="M50 50 L150 80 L200 60 L250 100 L300 90 L350 120" stroke="%23ddd" fill="none" stroke-width="2"/%3E%3Cpath d="M80 150 L130 140 L180 160 L230 150 L280 180" stroke="%23ddd" fill="none" stroke-width="2"/%3E%3Ccircle cx="150" cy="80" r="5" fill="%23999"/%3E%3Ccircle cx="230" cy="150" r="5" fill="%23999"/%3E%3C/svg%3E') no-repeat center;
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content p {
        color: rgba(25, 24, 24, 0.80);
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px; /* 177.778% */
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        color: #25211F;
        text-align: center;
        font-size: 28px;
        font-style: normal;
        font-weight: 500;
        line-height: 136%; /* 38.08px */
    }

    .hero-btn {
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px; /* 171.429% */

        display: flex;
        margin: 0 auto;
    }

    .hero-image {
        margin-top: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .footer {
        text-align: center;
        padding: 40px 20px;
    }

    .footer-info {
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .footer-logo {
        align-items: center;
        padding-right: 0;
    }

    .footer-map {
        display: none;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-card h4 {
        color: #25211F;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */
    }

    .feature-card p {
        color: #5F5E5E;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 160%; /* 22.4px */
    }

    .feature-list li {
        color: #5F5E5E;
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 160%; /* 22.4px */
    }

    .section-title {
        color: #25211F;
        text-align: center;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 34px; /* 141.667% */
    }

    .attributes-title {
        color: #25211F;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 162.5% */
    }

    .attributes-description {
        color: #5F5E5E;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 24px; /* 150% */
        margin-bottom: 32px;
    }

    .attributes-icon {
        margin-bottom: 16px;
    }

    .item-image {
        width: 100%;
        padding: 40px;
        height: initial;
    }

    .opinion-content {
        color: #25211F;
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 144.444% */
    }

    .opinion-author {
        color: #5F5E5E;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 26px; /* 162.5% */
    }

    .attributes,
    .products,
    .materials,
    .opinion,
    .comparison,
    .gallery
    {
        padding: 48px 0;
    }

    .comparison table td,
    .comparison table th
    {
        padding: 16px 0;
    }

    .comparison table th {
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px; /* 162.5% */
    }

    .comparison table td {
        color: #191818;
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px; /* 171.429% */
    }

    .footer {
        background-image: url("../images/footer.png");
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 0;
        padding-bottom: 0;
    }
    .footer-content {
        background-image: none;
    }

    .footer-left h4 {

    }
}

