.hero {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-image: url("../img/A.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
    background-blend-mode: multiply;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    pointer-events: none;
}

.hero-shape,
.hero-zipper,
.hero-zipper::before,
.hero-content {
    display: none;
}
.hero::after {
    display: none;
}

.about-innovative {
    max-width: 100%;
    padding: 6rem 0;
    background: linear-gradient(135deg, #000b25 0%, #00012b 50%, #2d5bc5 100%);
    overflow: hidden;
}

.about-innovative::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.innovative-container,
.difference-container,
.products-section,
.contact-container {
    position: relative;
    z-index: 1;
}

.innovative-container {
    width: min(1600px, calc(100% - 2rem));
    max-width: 1600px;
    margin: 0 auto;
}

.innovative-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovative-text {
    padding-right: 2rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.innovative-text h2 {
    margin-bottom: 2rem;
    color: #f8fafc;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.innovative-description p {
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.feature-item span {
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 500;
}

.innovative-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.innovative-btn:hover {
    transform: translateY(-3px);
    gap: 1.5rem;
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.innovative-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-arrow svg {
    width: 100%;
    height: 100%;
    color: white;
}

.visual-container {
    position: relative;
    height: 600px;
}

.main-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.main-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    z-index: 1;
}

.video-background {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-container:hover .video-background {
    transform: scale(1.05);
}

.mission-vision-values {
    max-width: 100%;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f5f7fa, #e2e8f0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-title {
    position: relative;
    margin-bottom: 3rem;
    color: #011133;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-align: center;
}

.mv-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 100px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 3px;
    background: #0871ea;
    box-shadow: 0 0 15px rgba(8, 113, 234, 0.5);
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1300px;
}

.mv-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: justify;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.mv-card h3 {
    position: relative;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.mv-card h3::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 3px;
    background: #0871ea;
}

.mission,
.vision,
.values {
    background: linear-gradient(135deg, #011133, #011133);
    color: #f8fafc;
}

.mv-card p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
}

.mv-card ul {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
}

.mv-card li {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 400;
    transition: background 0.3s ease;
}

.mv-card li:hover {
    background: rgba(1, 0, 49, 0.4);
}

.lissomil-difference {
    max-width: 100%;
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0e276e, #000c2b, #1043af);
    color: white;
    overflow: hidden;
}

.lissomil-difference::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000' opacity='0.05'%3E%3Cpolygon fill='white' points='0,1000 1000,0 1000,1000'/%3E%3C/svg%3E");
    background-size: cover;
}

.difference-container {
    width: min(1600px, 100%);
    max-width: 1600px;
    margin: 0 auto;
}

.difference-header {
    margin-bottom: 4rem;
    text-align: center;
}

.difference-title {
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.difference-subtitle {
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.difference-subtitle::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 3px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: #60a5fa;
}

.difference-subtitle span {
    color: #93c5fd;
    text-shadow: 0 0 10px rgba(147, 197, 253, 0.5);
}

.values-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.4s ease;
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: rgba(96, 165, 250, 0.2);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: #93c5fd;
}

.value-content h3 {
    margin-bottom: 1rem;
    color: #e0f2fe;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.value-content p {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
}

.products-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 5rem 1rem;
}

.section-title {
    margin-bottom: 1rem;
    color: #1e293b;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.products-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #475569;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
}

.products-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.scroll-btn {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.scroll-btn:hover {
    transform: scale(1.1);
    background: #1d4ed8;
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.product-card-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #2563eb #e2e8f0;
}

.product-card-container::-webkit-scrollbar {
    height: 8px;
}

.product-card-container::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}

.product-card-container::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 10px;
}

.product-card {
    width: clamp(220px, 24vw, 320px);
    min-width: clamp(220px, 24vw, 320px);
    max-width: 320px;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: linear-gradient(135deg, #000852, #003274);
}

.product-image-wrapper img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    opacity: 0.96;
}

.product-info {
    display: flex;
    min-height: 96px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: #f7f7f7;
}

.product-info h3 {
    margin-bottom: 0.25rem;
    color: #1e293b;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
}

.product-info p {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 300;
}

.services-banner {
    max-width: 100%;
    height: 120vh;
    padding: 0;
    background: #000;
    overflow: hidden;
}

.services-banner img {
    height: 100%;
    object-fit: cover;
}

.contact-section {
    max-width: 100%;
    padding: 5rem 1rem;
    background: white;
}

.contact-container {
    width: min(1600px, 100%);
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-image:hover .contact-img {
    transform: scale(1.03);
}

.contact-form {
    display: flex;
    min-height: 580px;
    flex-direction: column;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    position: relative;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
    color: #1e293b;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.contact-form h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 3px;
    transform: translateX(-50%);
    background: #2563eb;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .hero-background {
        object-position: 24% center;
    }

    .hero-content {
        width: min(52vw, 680px);
    }

    .innovative-content {
        gap: 2.5rem;
    }

    .innovative-text h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        min-height: calc(92vh - var(--nav-height));
        justify-content: center;
    }

    .hero::after {
        display: none;
    }

    .hero-background {
        display: none;
    }

    .hero-shape {
        width: 42vw;
    }

    .hero-zipper {
        left: calc(42vw - 24px);
        top: 50%;
        transform: translateY(-50%);
    }

    .hero-content {
        width: min(78vw, 640px);
        margin-right: 0;
        padding: 0 1rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 8vw, 4.5rem);
    }

    .innovative-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .innovative-text {
        padding-right: 0;
        text-align: center;
    }

    .innovative-text h2 {
        font-size: 2.8rem;
    }

    .feature-item:hover,
    .value-card:hover {
        transform: none;
    }

    .visual-container {
        max-width: 600px;
        height: 500px;
        margin: 0 auto;
    }

    .contact-img {
        min-height: 0;
    }

    .contact-form {
        min-height: auto;
    }

    .product-card {
        width: clamp(220px, 32vw, 300px);
        min-width: clamp(220px, 32vw, 300px);
    }

    .values-grid-elegant,
    .mv-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        align-items: center;
        min-height: 100svh;
        padding: 0;
    }

    .hero::after {
        display: none;
    }

    .hero-background {
        display: none;
    }

    .hero-shape {
        width: 50vw;
        border-top-right-radius: 999px;
        border-bottom-right-radius: 999px;
    }

    .hero-zipper {
        left: calc(50vw - 24px);
        width: 36px;
        height: 180px;
    }

    .hero-content {
        width: min(90vw, 600px);
        max-width: 90vw;
        margin-right: 0;
        padding: 0 1rem 1.25rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }

    .hero-btn {
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(2.15rem, 9vw, 4rem);
        margin-bottom: 1.5rem;
        line-height: 1.0;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hero-btn {
        padding: 0.95rem 2rem;
        font-size: 0.98rem;
    }

    .about-innovative,
    .mission-vision-values,
    .lissomil-difference,
    .products-section,
    .contact-section {
        padding: 4rem 0.75rem;
    }

    .innovative-text h2,
    .mv-title,
    .difference-title {
        font-size: 2.2rem;
    }

    .innovative-description p {
        font-size: 1rem;
    }

    .features-grid,
    .values-grid-elegant,
    .mv-container {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 0.8rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .visual-container {
        height: 380px;
    }

    .values-grid-elegant,
    .mv-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .difference-subtitle {
        font-size: 1.1rem;
    }

    .products-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card-container {
        gap: 1rem;
    }

    .product-card {
        width: min(78vw, 340px);
        min-width: min(78vw, 340px);
        max-width: 340px;
    }

    .scroll-btn {
        display: none;
    }

    .services-banner {
        height: 60vw;
        min-height: 260px;
    }

    .contact-image {
        order: 2;
        height: 260px;
        min-height: 260px;
    }

    .contact-img {
        min-height: 0;
    }

    .contact-form {
        order: 1;
        padding: 1.8rem 1.2rem;
    }

    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 92svh;
    }

    .hero-background {
        display: none;
    }

    .hero-shape {
        width: 56vw;
    }

    .hero-zipper {
        left: calc(56vw - 20px);
        width: 32px;
        height: 160px;
    }

    .hero-content {
        padding: 0 0.9rem 1rem;
    }

    .hero-title,
    .innovative-text h2,
    .mv-title,
    .difference-title,
    .section-title,
    .contact-form h2 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
        margin-bottom: 0.9rem;
    }

    .product-card {
        width: 86vw;
        min-width: 86vw;
        max-width: 86vw;
    }

    .services-banner {
        height: 70vw;
        min-height: 220px;
    }
}


@media (max-width: 768px) {
    .hero {
        justify-content: flex-end;
        align-items: flex-end;
        min-height: 100svh;
        padding: 0;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0.76) 68%, rgba(255, 255, 255, 0.98) 100%);
    }

    .hero-background {
        object-position: 30% center;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin-right: 0;
        padding: 0 1rem 1.25rem;
        text-align: right;
    }

    .hero-title {
        font-size: clamp(2.15rem, 9vw, 4rem);
        margin-bottom: 1.5rem;
        line-height: 0.95;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hero-btn {
        padding: 0.95rem 2rem;
        font-size: 0.98rem;
    }

    .about-innovative,
    .mission-vision-values,
    .lissomil-difference,
    .products-section,
    .contact-section {
        padding: 4rem 0.75rem;
    }

    .innovative-text h2,
    .mv-title,
    .difference-title {
        font-size: 2.2rem;
    }

    .innovative-description p {
        font-size: 1rem;
    }

    .features-grid,
    .values-grid-elegant,
    .mv-container {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 0.8rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .visual-container {
        height: 400px;
    }

    .values-grid-elegant,
    .mv-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .difference-subtitle {
        font-size: 1.1rem;
    }

    .products-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-card-container {
        gap: 1rem;
    }

    .product-card {
        width: min(78vw, 340px);
        min-width: min(78vw, 340px);
        max-width: 340px;
    }

    .scroll-btn {
        display: none;
    }

    .services-banner {
        height: 60vw;
        min-height: 260px;
    }

    .contact-image {
        order: 2;
        height: 260px;
        min-height: 260px;
    }

    .contact-img {
        min-height: 0;
    }

    .contact-form {
        order: 1;
        padding: 1.8rem 1.2rem;
    }

    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 92svh;
    }

    .hero-background {
        object-position: 27% center;
    }

    .hero-content {
        padding: 0 0.9rem 1rem;
    }

    .hero-title,
    .innovative-text h2,
    .mv-title,
    .difference-title,
    .section-title,
    .contact-form h2 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.82rem;
        margin-bottom: 0.9rem;
    }

    .product-card {
        width: 86vw;
        min-width: 86vw;
        max-width: 86vw;
    }

    .services-banner {
        height: 70vw;
        min-height: 220px;
    }
}
