/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Original VITO Colors */
:root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free";
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
    --vito-yellow: #FFEB3B;
    --vito-blue: #013773;
    --vito-green: #4CAF50;
    --vito-yellow-bg: #FFEB3B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

/* Top Header Bar */
.top-header-bar {
    background-color: var(--vito-yellow);
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 15px;
    max-width: 100%;
    min-height: 32px;
}

.top-header-left {
    display: flex;
    align-items: center;
}

.top-header-logo-small {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.top-header-logo-small img {
    display: block;
    width: 20px;
    height: 32px;
}

.top-header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.top-header-logo img {
    display: block;
}

.top-header-logo-text {
    font-size: 16px;
    font-weight: 600;
}

.logo-subtext {
    font-size: 12px;
    font-weight: 400;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.top-header-item i {
    font-size: 14px;
}

.top-header-dropdown {
    margin: 0 3px;
}

.top-header-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    font-size: 18px;
    padding: 5px;
    display: none;
    align-items: center;
}

/* Responsive Top Header */
@media (max-width: 992px) {
    .top-header-item span {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-header-content {
        padding: 0 10px;
    }
    
    .top-header-right {
        gap: 10px;
    }
    
    .top-header-item {
        font-size: 12px;
    }
    
    .top-header-item i {
        font-size: 12px;
    }
}

/* Header Styles */
.u-header {
    position: relative;
    width: 100%;
    background-color: var(--vito-yellow);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.u-header__section {
    background-color: var(--vito-yellow);
}

.g-transition-0_3 {
    transition: all 0.3s;
}


.navbar {
    padding: 0;
}

.navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.navbar-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    margin-right: 0;
}

.navbar-brand img {
    display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2002;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

.navbar-nav-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 0;
}

/* Prevent background scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
}

/* Ensure body scroll is restored when menu is closed */
body:not(.menu-open) {
    overflow: auto !important;
    height: auto !important;
    position: static !important;
    width: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
}

/* Safari specific fix for menu height */
@supports (-webkit-touch-callout: none) {
    body:not(.menu-open) {
        overflow: visible !important;
        height: 100% !important;
        position: relative !important;
    }
    
    body.menu-open {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    gap: 0;
}

.g-py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (min-width: 1200px) {
    .g-py-0--xl {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.ml-auto {
    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 0.3s;
    color: #000;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .nav-link {
        padding: 10px 20px;
    }
}

@media (min-width: 1200px) {
    .g-px-23--xl {
        padding-left: 23px;
        padding-right: 23px;
    }
    
    .g-brd-none--xl {
        border-right: none;
    }
}

.u-skew {
    position: relative;
    display: inline-block;
}

.u-skew__inner {
    display: inline-block;
    transform: skew(0deg);
}

.g-color-black--hover:hover {
    color: #000 !important;
}

.g-font-weight-600 {
    font-weight: 600;
}

.g-font-size-default {
    font-size: 14px;
}

.g-brd-right--xl {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.nav-link:hover {
    color: #000;
}

.nav-link[style*="background-color"] {
    color: var(--vito-yellow);
}

.nav-link[style*="background-color"]:hover {
    color: #fff;
    background-color: #333 !important;
}

.nav-link.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.hs-has-sub-menu {
    position: relative;
}

.hs-sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 300px;
    z-index: 1000;
    display: none;
}

.hs-has-sub-menu:hover .hs-sub-menu {
    display: block;
}

.hs-has-sub-menu .hs-sub-menu {
    display: none;
}

.hs-has-sub-menu:hover .hs-sub-menu,
.hs-has-sub-menu.active .hs-sub-menu {
    display: block;
}

.header-right-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px;
}

@media (min-width: 1200px) {
    .header-right-icons {
        margin-left: 30px;
    }
}

.g-pt-3--lg {
    padding-top: 12px;
}

@media (min-width: 992px) {
    .g-pt-3--lg {
        padding-top: 12px;
    }
}

.g-pos-rel {
    position: relative;
}

.g-ml-auto {
    margin-left: auto;
}

.g-ml-10 {
    margin-left: 10px;
}

.g-pa-0 {
    padding: 0;
}

.g-height-30 {
    height: 30px;
}

.h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.h6 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.g-my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.g-pt-5 {
    padding-top: 5px;
}

.g-mb-1 {
    margin-bottom: 0.25rem;
}

.g-py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.g-font-weight-700 {
    font-weight: 700;
}

.g-font-weight-800 {
    font-weight: 800;
}

.mb-0 {
    margin-bottom: 0;
}

.u-sub-menu-v3 {
    position: relative;
}

.g-mt-5--xl {
    margin-top: 5px;
}

@media (min-width: 1200px) {
    .g-mt-5--xl {
        margin-top: 5px;
    }
}

.g-mt-1--xl--scrolling {
    margin-top: 1px;
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col {
    flex: 1;
    padding-left: 15px;
    padding-right: 15px;
}

.font-weight-600 {
    font-weight: 600;
}

.g-text-underline--none--hover {
    text-decoration: none;
}

.g-text-underline--none--hover:hover {
    text-decoration: none;
}

.fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.float-left {
    float: left;
}

.g-cursor-pointer {
    cursor: pointer;
}

.g-color-yellow {
    color: var(--vito-yellow);
}

.g-color-white--hover:hover {
    color: #fff !important;
}

.g-px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.g-py-3 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.d-flex {
    display: flex;
}

/* Responsive Navigation */
@media (max-width: 1199px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-content {
        position: relative;
    }
    
    .navbar-nav-container {
        position: fixed;
        top: 60px; /* Will be updated dynamically by JavaScript based on header height */
        left: -100%;
        width: 280px;
        max-width: 85vw;
        height: calc(100vh - 60px); /* Will be updated dynamically */
        background-color: var(--vito-yellow);
        transition: left 0.3s ease;
        z-index: 2000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        overflow-y: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        pointer-events: auto;
        background-color: #FFEB3B; /* Ensure bright yellow */
    }
    
    .navbar-nav-container.active {
        left: 0 !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0;
        margin-top: 0; /* Will be set by JavaScript if needed */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(1,55,115,0.12);
    }
    
    .nav-link {
        padding: 15px 20px;
        border-right: none;
        width: 100%;
        color: var(--vito-blue) !important;
        border-bottom: 1px solid rgba(1,55,115,0.15);
        white-space: normal;
        line-height: 1.4;
        display: flex !important;
        align-items: center;
        font-weight: 600;
        cursor: pointer;
        pointer-events: auto;
        text-decoration: none;
        transition: background-color 0.2s ease;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-link .u-skew__inner {
        display: flex !important;
        align-items: center;
        width: 100%;
    }
    
    .nav-link .u-skew__inner.float-left {
        float: none !important;
    }
    
    .nav-link:hover {
        background-color: rgba(1,55,115,0.1);
        color: var(--vito-blue) !important;
    }
    
    .nav-link[style*="background-color"] {
        background-color: var(--vito-blue) !important;
        color: var(--vito-yellow) !important;
    }
    
    .header-right-icons {
        margin-left: 0;
        padding: 15px 20px;
        border-top: 1px solid rgba(1,55,115,0.15);
        width: 100%;
        margin-top: auto; /* Push to bottom */
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header-right-icons a {
        color: var(--vito-blue) !important;
        font-weight: 600;
        cursor: pointer;
        pointer-events: auto;
        text-decoration: none;
        display: flex !important;
        align-items: center;
        gap: 8px;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .header-right-icons a:hover {
        text-decoration: underline;
    }
    
    .header-right-icons i {
        display: inline-block !important;
        visibility: visible !important;
    }
    
    .hs-sub-menu {
        position: static;
        display: block;
        box-shadow: none;
        background-color: rgba(1,55,115,0.08);
        margin-left: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    
    .hs-sub-menu.open {
        max-height: 1000px;
        opacity: 1;
        padding: 10px 0 0 0;
    }
    
    .hs-sub-menu .container {
        background-color: transparent !important;
    }
    
    .hs-sub-menu a {
        color: var(--vito-blue) !important;
        display: block !important;
        padding: 10px 20px;
        cursor: pointer;
        pointer-events: auto;
        text-decoration: none;
        transition: background-color 0.2s ease;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hs-sub-menu a:hover {
        background-color: rgba(1,55,115,0.1);
    }
    
    .hs-sub-menu .h5, .hs-sub-menu .h6 {
        color: var(--vito-blue) !important;
        font-weight: 700;
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .hs-sub-menu img {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Close button for mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: transparent;
        border: none;
        color: var(--vito-blue);
        font-size: 28px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2001;
        line-height: 1;
    }
    
    .mobile-menu-close:hover {
        color: var(--vito-blue);
        opacity: 0.7;
    }
    
    /* Overlay when menu is open - only on the right side, not covering menu */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0; /* Will be updated dynamically by JavaScript */
        left: 280px; /* Start after menu width - will be updated dynamically */
        width: calc(100% - 280px); /* Will be updated dynamically */
        max-width: calc(100vw - 280px);
        height: 100vh; /* Will be updated dynamically */
        background-color: rgba(0,0,0,0.1);
        z-index: 1999;
        pointer-events: none;
    }
    
    @media (max-width: 330px) {
        body.menu-open::before {
            left: 85vw;
            width: 15vw;
        }
    }
    
    /* Ensure body scroll is restored when menu closes */
    body:not(.menu-open) {
        overflow: auto !important;
    }
    
    /* Ensure hamburger button is always clickable */
    .mobile-menu-toggle {
        z-index: 2002 !important;
        pointer-events: auto !important;
    }
    
    /* Ensure menu items are visible and clickable */
    .navbar-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .navbar-nav-container.active {
        pointer-events: auto !important;
    }
    
    .navbar-nav-container.active * {
        pointer-events: auto !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url('../images/img_Promos_Header-industrial-fluid-care-and-filter.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-left-content {
    flex: 1;
    position: relative;
    height: 100%;
}


/* Desktop'ta hero-left-content içindeki mobil içeriği gizle */
.hero-mobile-content {
    display: none;
}

/* Desktop'ta hero-left-content içindeki hero-section'ı da gizle */
@media (min-width: 993px) {
    .hero-left-content .hero-section.hero-mobile-content {
        display: none !important;
    }
}

/* Desktop'ta hero-right-content göster */
@media (min-width: 1200px) {
    .hero-right-content {
        display: flex !important;
    }
    
    .hero-mobile-content {
        display: none !important;
    }
    
    .hero-left-content .hero-section.hero-mobile-content {
        display: none !important;
    }
}

.hero-right-content {
    flex: 1;
    position: relative;
    background-color: var(--vito-blue);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -30%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-main-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: right;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 5px;
    right: 20px;
    z-index: 10;
    max-width: 550px;
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 36px;
        line-height: 1.2;
        max-width: 650px;
    }
}

.hero-bottom-right {
    position: absolute;
    bottom: 10px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    z-index: 10;
}

.hero-certifications {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-certifications img {
    width: 75px;
    height: auto;
    display: block;
    margin-bottom: 3px;
}

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

.hero-vito-logo {
    width: 100px;
    height: auto;
    display: block;
    margin-bottom: 3px;
}

.hero-made-in-germany {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.german-flag-colors {
    width: 100px;
    height: 6px;
    background: linear-gradient(to bottom, #000 0%, #000 33.33%, #DD0000 33.33%, #DD0000 66.66%, #FFCE00 66.66%, #FFCE00 100%);
    border-radius: 2px;
    margin-bottom: 4px;
}

.hero-made-in-germany span {
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.2;
}

.g-color-white {
    color: #fff;
}

.g-font-weight-700--md {
    font-weight: 700;
}

.g-font-size-25 {
    font-size: 28px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .g-font-size-45--md {
        font-size: 48px;
        line-height: 1.2;
    }
}

.g-pos-abs {
    position: absolute;
}

.g-top-20 {
    top: 15px;
}

.g-right-20 {
    right: 25px;
}

.g-right-130 {
    right: 160px;
}

.g-bottom-10 {
    bottom: 20px;
}

.g-px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

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


/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-main-image {
        height: 400px; /* Medium fixed height on tablet */
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-container-full {
        min-height: auto;
    }
    
    .hero-content-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-left-content {
        min-height: 400px;
        background-image: url('../images/img_Promos_Header-industrial-fluid-care-and-filter.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
    }
    
    /* Mobilde hero-right-content'i gizle */
    .hero-right-content {
        display: none !important;
    }
    
    /* Mobilde hero-left-content içindeki içeriği göster */
    .hero-mobile-content {
        display: block !important;
    }
    
    .hero-left-content .hero-main-title {
        color: #fff;
        text-align: right;
        margin: 0;
        padding: 0;
        max-width: 50%;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
    }
    
    .hero-left-content .hero-section {
        position: absolute;
        bottom: 20px;
        right: 20px;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: flex-end;
        gap: 8px;
        z-index: 10;
        margin-top: 0;
        flex-wrap: nowrap;
        width: auto;
    }
    
    .hero-left-content .hero-bottom-right {
        position: absolute;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 8px;
        z-index: 10;
    }
    
    .hero-left-content .hero-section .hero-certifications {
        display: flex !important;
        flex-direction: row !important;
        gap: 5px;
        align-items: flex-end !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-left-content .hero-section .hero-logo-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-left-content .hero-section .hero-certifications img {
        max-width: 60px;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .hero-left-content .hero-section .hero-vito-logo {
        max-width: 100px;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .g-flex-right {
        min-height: auto;
        padding: 20px;
    }
    
    .g-py-30 {
        padding: 20px;
    }
    
    .g-px-30 {
        padding: 15px;
    }
    
    .g-pos-abs {
        position: relative;
    }
    
    .g-top-20,
    .g-bottom-10,
    .g-right-20,
    .g-right-130 {
        position: static;
        top: auto;
        bottom: auto;
        right: auto;
        left: auto;
    }
    
    .g-font-size-25,
    .g-font-size-45--md {
        font-size: 28px;
        text-align: center;
    }
    
    .g-bottom-10.g-right-130 {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        margin: 20px 0;
    }
    
    .g-bottom-10.g-right-20 {
        text-align: center;
        margin: 20px auto;
    }
    
    .hero-product-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
}

@media (max-width: 768px) {
    .hero-left-content {
        min-height: 450px;
        background-image: url('../images/img_Promos_Header-industrial-fluid-care-and-filter.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
    }
    
    .hero-product-wrapper {
        max-width: 280px;
    }
    
    /* Mobilde hero-right-content'i gizle */
    .hero-right-content {
        display: none !important;
    }
    
    /* Mobilde hero-left-content içindeki içeriği göster */
    .hero-mobile-content {
        display: block !important;
    }
    
    .hero-left-content .hero-main-title {
        color: #fff;
        text-align: right;
        margin: 0;
        padding: 0;
        max-width: 50%;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.3;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }
    
    .hero-left-content .hero-section {
        position: absolute;
        bottom: 15px;
        right: 15px;
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: flex-end;
        gap: 6px;
        z-index: 10;
        margin-top: 0;
        flex-wrap: nowrap;
        width: auto;
    }
    
    .hero-left-content .hero-bottom-right {
        position: absolute;
        bottom: 15px;
        right: 15px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 6px;
        z-index: 10;
    }
    
    .hero-left-content .hero-section .hero-certifications {
        display: flex !important;
        flex-direction: row !important;
        gap: 5px;
        align-items: flex-end !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-left-content .hero-section .hero-logo-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-left-content .hero-section .hero-certifications img {
        max-width: 50px;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .hero-left-content .hero-section .hero-vito-logo {
        max-width: 90px;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .g-flex-right {
        padding: 15px;
    }
    
    .g-py-30 {
        padding: 15px;
    }
    
    .g-px-30 {
        padding: 10px;
    }
    
    .g-font-size-25,
    .g-font-size-45--md {
        font-size: 24px;
    }
    
    .g-bottom-10.g-right-20 img {
        width: 80px;
    }
    
    .g-bottom-10.g-right-130 img {
        width: 60px;
    }
}


.g-pos-abs {
    position: absolute;
}

.g-bottom-10 {
    bottom: 10px;
}

.g-right-20 {
    right: 20px;
}

.g-right-130 {
    right: 130px;
}

@media (max-width: 1200px) {
    .g-right-130 {
        right: 20px;
    }
    
    .g-bottom-10.g-right-130 {
        bottom: 80px;
    }
}

.g-top-20 {
    top: 20px;
}

.g-bottom-10.g-right-130 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.g-bottom-10.g-right-130 img {
    display: block;
}

.g-color-white {
    color: #fff;
}

.g-font-weight-700--md {
    font-weight: 700;
}

.g-font-size-25 {
    font-size: 25px;
}

@media (min-width: 768px) {
    .g-font-size-45--md {
        font-size: 45px;
    }
}

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

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

.d-inline-block {
    display: inline-block;
}

.g-px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

/* Utility Classes */
.g-bg-yellow {
    background-color: var(--vito-yellow);
}

.g-pt-30 {
    padding-top: 30px;
}

.g-brd-blue {
    border-color: var(--vito-blue);
}

.g-mb-30 {
    margin-bottom: 30px;
}

.g-ml-30 {
    margin-left: 30px;
}

.u-heading-v2-3--bottom {
    position: relative;
    padding-bottom: 20px;
}

.u-heading-v2-3--bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--vito-blue);
}

.u-heading-v2__title {
    margin: 0;
}

.g-color-blue {
    color: var(--vito-blue);
}

.g-font-weight-400 {
    font-weight: 400;
}

.h1 {
    font-size: 2.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.g-px-0 {
    padding-left: 0;
    padding-right: 0;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 992px) {
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.list-inline-item {
    display: inline-block;
    list-style: none;
}

ul.row {
    list-style: none;
    padding: 0;
    margin: 0;
}

.g-flex-middle {
    display: flex;
    align-items: center;
}

.g-mx-0 {
    margin-left: 0;
    margin-right: 0;
}

.g-mb-30 {
    margin-bottom: 30px;
}

.h-150 {
    height: 150px;
}

.g-bg-blue {
    background-color: var(--vito-blue);
}

.g-bg-green {
    background-color: var(--vito-green);
}

.g-color-white {
    color: #fff;
}

.g-font-weight-600 {
    font-weight: 600;
}

.g-font-size-17 {
    font-size: 17px;
}

.mb-3 {
    margin-bottom: 1rem;
}

.g-bg-blue {
    background-color: var(--vito-blue);
}

.g-mb-30 {
    margin-bottom: 30px;
}

.g-pt-10 {
    padding-top: 10px;
}

.g-mt-75 {
    margin-top: 75px;
}

.g-px-5 {
    padding-left: 5px;
    padding-right: 5px;
}

/* Container Fluid */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Text utilities */
.text-left {
    text-align: left;
}

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

/* Process section specific */
.g-bg-yellow {
    background-color: var(--vito-yellow);
}

.g-color-blue {
    color: var(--vito-blue);
}

.g-font-weight-500 {
    font-weight: 500;
}

.g-overflow-hidden {
    overflow: hidden;
}

.u-block-hover {
    transition: transform 0.3s;
}

.u-block-hover:hover {
    transform: translateY(-5px);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.w-100 {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .g-ml-30 {
        margin-left: 0;
    }
    
    .g-right-130 {
        right: 20px;
    }
    
    .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .u-heading-v2-3--bottom {
        margin-left: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .h-150 {
        min-width: auto !important;
        width: 100%;
    }
}

.quality-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 0;
    background-color: var(--vito-blue);
    color: #fff;
    padding: 20px 40px;
    width: 100%;
}

.quality-features .quality-desc {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.quality-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quality-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.quality-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.quality-item img {
    height: 30px;
    width: auto;
}

.quality-item span:not(.quality-icon):not(.quality-desc) {
    font-weight: 700;
    font-size: 17px;
    color: #fff;
}

.quality-desc {
    font-size: 14px;
    color: #666;
}

/* Filtration Process Section */
.filtration-process {
    padding: 80px 20px;
    background-color: var(--vito-yellow-bg);
}

.section-title {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: var(--vito-blue);
    text-transform: none;
}

.benefits .section-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 0 20px;
}

.section-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.process-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    background-color: var(--vito-blue);
    padding: 10px;
    margin-bottom: 15px;
}

.process-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.placeholder-image {
    padding: 20px;
    text-align: center;
}

.process-step p {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
    font-weight: 700;
    background-color: var(--vito-blue);
    padding: 10px;
    border-radius: 5px;
}

.process-arrow {
    font-size: 32px;
    color: var(--vito-blue);
    font-weight: bold;
}

.process-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.process-benefit {
    background-color: #fff;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: var(--vito-blue);
}

.process-benefit h4 {
    font-size: 16px;
    color: var(--vito-blue);
    font-weight: 700;
    margin: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background-color: var(--vito-yellow-bg);
}

/* Product Line Section */
.product-line {
    padding: 80px 20px;
    background-color: var(--vito-blue);
}

.product-line .section-title {
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    background-color: var(--vito-yellow-bg);
    padding: 0;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.product-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

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

.product-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 900;
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    margin-top: 20px;
}

.product-card h3 span {
    background: rgba(255, 235, 59, 0.6);
    padding: 5px 10px;
    color: #000;
    display: inline-block;
}

.product-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: 1;
    padding: 0;
}

.product-card p span {
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    display: block;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--vito-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #002d5a;
}

/* Customers Section */
.customers {
    padding: 80px 20px;
    background-color: var(--vito-yellow-bg);
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.customer-logo {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #666;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.customer-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.customer-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--vito-yellow-bg);
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
}

.contact-info strong {
    color: var(--vito-blue);
}

/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-social {
    font-size: 18px;
    font-weight: 600;
}

/* Product Detail Pages */
.product-detail {
    margin-bottom: 80px;
    padding-top: 40px;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-detail-content.reverse {
    direction: rtl;
}

.product-detail-content.reverse > * {
    direction: ltr;
}

.product-detail-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-text h2 {
    font-size: 32px;
    color: var(--vito-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.product-detail-text h3 {
    font-size: 20px;
    color: var(--vito-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.product-detail-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 16px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--vito-blue);
    font-weight: bold;
}

/* Jobs Page */
.jobs-list {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid var(--vito-blue);
}

.job-card h3 {
    font-size: 24px;
    color: var(--vito-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.job-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.job-requirements li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
    font-size: 15px;
}

.job-requirements li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--vito-blue);
    font-weight: bold;
    font-size: 20px;
}

/* Demo Form */
.demo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.demo-benefits .process-benefit p {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.demo-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vito-blue);
}

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

.demo-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.demo-form .btn-primary:hover {
    background-color: #002d5a;
}

/* Company Page */
.company-info {
    max-width: 900px;
    margin: 0 auto;
}

.company-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.company-section h2 {
    font-size: 28px;
    color: var(--vito-blue);
    margin-bottom: 20px;
    font-weight: bold;
}

.company-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.certificates {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.certificate-badge {
    background-color: var(--vito-blue);
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legal-content h3 {
    font-size: 22px;
    color: var(--vito-blue);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Simple Hero Section for other pages */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--vito-blue);
    text-align: center;
    margin-bottom: 20px;
    padding-top: 80px;
    padding-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 28px;
        padding-top: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .quality-features {
        gap: 20px;
        flex-direction: column;
        padding: 15px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
    }

    .product-detail-content.reverse {
        direction: ltr;
    }

    .demo-form {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .customers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: var(--vito-yellow);
    padding: 60px 20px;
    text-align: center;
}

.benefits-header {
    margin-bottom: 50px;
}

.benefits-title {
    color: var(--vito-blue);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.benefits-line {
    width: 80px;
    height: 3px;
    background-color: var(--vito-blue);
    margin: 0 auto;
}

.benefits-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-box {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 150px;
}

.benefit-box-blue {
    background-color: var(--vito-blue);
}

.benefit-box-green {
    background-color: var(--vito-green);
}

.benefit-box h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Quality Features Section */
.quality-features-section {
    background-color: var(--vito-blue);
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.quality-feature img {
    height: 30px;
    width: auto;
}

@media (max-width: 768px) {
    .benefit-box {
        flex: 0 0 calc(50% - 10px);
        min-width: 180px;
    }
    
    .benefits-title {
        font-size: 24px;
    }
    
    .quality-features-section {
        flex-direction: column;
        gap: 30px;
    }
}

/* Filtration Process Section */
.filtration-process-section {
    background-color: var(--vito-yellow);
    padding: 60px 20px;
    text-align: center;
}

.filtration-header {
    max-width: 1200px;
    margin: 0 auto 50px;
}

.filtration-title {
    color: var(--vito-blue);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.filtration-description {
    color: var(--vito-blue);
    font-size: 16px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.filtration-panels {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.filtration-panel {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    background-color: #fff;
    border: 3px solid var(--vito-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.filtration-panel img {
    width: 100%;
    height: auto;
    display: block;
}

.filtration-caption {
    color: var(--vito-blue);
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .filtration-panel {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .filtration-title {
        font-size: 24px;
    }
    
    .filtration-description {
        font-size: 14px;
    }
}

/* How It Works Section */
.how-it-works-section {
    background-color: var(--vito-yellow);
    padding: 40px 20px 60px;
}

.how-it-works-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-button {
    background-color: var(--vito-blue);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    flex: 0 0 auto;
    min-width: 200px;
}

.how-it-works-content {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-title {
    color: #333;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #333;
}

.how-it-works-main {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.how-it-works-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}

.how-it-works-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.how-it-works-video {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.video-container {
    position: relative;
    border: 3px solid var(--vito-blue);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: stretch;
}

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

.video-benefits {
    background-color: var(--vito-yellow);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--vito-blue);
}

.video-benefits-title {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.video-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-benefits li {
    color: #000;
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.video-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--vito-blue);
    font-weight: bold;
    font-size: 20px;
}

/* Product Line Section */
.product-line-section {
    background-color: var(--vito-blue);
    padding: 60px 20px;
    text-align: center;
}

.product-line-header {
    margin-bottom: 50px;
}

.product-line-title {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.product-line-separator {
    width: 80px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto;
}

.product-line-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.product-line-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 400px;
    background-color: var(--vito-yellow);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-line-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.product-line-card:visited {
    color: inherit;
}

.product-line-card:link {
    color: inherit;
}

.product-line-card h3 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-line-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.product-line-card p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

/* Customers Section */
.customers-section {
    background-color: var(--vito-yellow);
    padding: 60px 20px;
    text-align: center;
}

.customers-header {
    margin-bottom: 50px;
}

.customers-title {
    color: var(--vito-blue);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
}

.customers-separator {
    width: 80px;
    height: 3px;
    background-color: var(--vito-blue);
    margin: 0 auto;
}

.customers-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid var(--vito-yellow);
}

.customer-logo-item {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 20px;
    border-right: 1px solid var(--vito-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.customer-logo-item:last-child {
    border-right: none;
}

.customer-logo-item img {
    max-width: 100%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
}

/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.contact-container {
    display: flex;
    min-height: 500px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.contact-map {
    flex: 1 1 auto;
    position: relative;
    min-height: 500px;
    overflow: hidden;
    min-width: 0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.contact-panel {
    flex: 0 0 450px;
    max-width: 450px;
    min-width: 0;
    background-color: var(--vito-blue);
    padding: 40px;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-title {
    color: var(--vito-yellow);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-intro {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-phone {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-address p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-email a {
    color: var(--vito-yellow) !important;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--vito-yellow);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vito-yellow);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--vito-yellow);
    color: var(--vito-blue);
}

.contact-hashtag {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background-color: #333;
    padding: 30px 20px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    display: block;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo-ag {
    font-size: 14px;
    vertical-align: super;
    margin-left: 2px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links span {
    color: #fff;
}

.footer-links a {
    color: var(--vito-yellow);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.scroll-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #555;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s;
}

.scroll-to-top:hover {
    background-color: #666;
}

@media (max-width: 768px) {
    .how-it-works-button {
        min-width: 150px;
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .how-it-works-main {
        flex-direction: column;
    }
    
    .product-line-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-panel {
        flex: 1;
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Product Detail Page Styles */
.product-detail-page {
    background-color: var(--vito-yellow);
    min-height: 100vh;
    padding: 0;
}

.product-detail-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--vito-blue);
    padding: 60px 40px;
    position: relative;
}

.product-detail-page {
    position: relative;
}

.product-detail-page::before,
.product-detail-page::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 10%;
    background-color: var(--vito-yellow);
    z-index: 0;
}

.product-detail-page::before {
    left: 0;
}

.product-detail-page::after {
    right: 0;
}

.product-detail-wrapper {
    position: relative;
    z-index: 1;
}

/* Contact section in product detail pages should be full width */
.product-detail-page .contact-section {
    position: relative;
    z-index: 5;
    background-color: #fff;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0;
    display: block;
    clear: both;
}

.product-detail-page .contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.product-detail-page .contact-panel {
    flex: 0 0 450px;
    max-width: 450px;
    min-width: 450px;
}

.product-detail-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    height: 500px; /* Fixed height to prevent jumping */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintain aspect ratio, fit within container */
    display: block;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    z-index: 10;
    flex-shrink: 0;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--vito-blue);
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.product-thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: var(--vito-yellow) transparent;
    -ms-overflow-style: none;
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background-color: var(--vito-yellow);
    border-radius: 2px;
}

.thumbnail-nav {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--vito-blue);
    color: var(--vito-yellow);
    border: none;
    cursor: pointer;
    display: none; /* Hidden by default, shown by JS when needed */
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.thumbnail-prev {
    display: none;
}

.thumbnail-next {
    display: none;
}

.thumbnail-nav:hover {
    background-color: var(--vito-yellow);
    color: var(--vito-blue);
    transform: scale(1.1);
}

.thumbnail-nav:active {
    transform: scale(0.95);
}

.thumbnail-nav i {
    font-size: 14px;
}

.product-thumbnail {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 100px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--vito-yellow);
}

.product-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    color: #fff;
}

.product-info h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-info .product-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.product-benefits {
    margin-bottom: 30px;
}

.benefit-section {
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 8px;
}

.benefit-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.benefit-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-section li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.benefit-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--vito-yellow);
    font-weight: bold;
    font-size: 20px;
}

.read-more-btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background-color: var(--vito-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-accordion {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    user-select: none;
}

.accordion-header:hover {
    color: var(--vito-yellow);
}

.accordion-icon {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding-bottom: 20px;
}

.accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.accordion-content table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-content table td:first-child {
    font-weight: 600;
    width: 40%;
}

.accordion-content a {
    color: var(--vito-yellow);
    text-decoration: none;
}

.accordion-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .product-detail-wrapper::before,
    .product-detail-wrapper::after {
        width: 5%;
    }
    
    .product-detail-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-info h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .product-detail-wrapper {
        padding: 40px 20px;
    }
    
    .product-detail-wrapper::before,
    .product-detail-wrapper::after {
        display: none;
    }
    
    .product-info h1 {
        font-size: 28px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Company Page Styles */
.company-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-text {
    text-align: center;
    color: #fff;
    z-index: 2;
}

.slider-text h1 {
    font-size: 64px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--vito-blue);
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Company Content Section */
.company-content-section {
    background-color: var(--vito-yellow);
    padding: 60px 40px;
    position: relative;
}

.company-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.company-content-main {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    background-color: var(--vito-blue);
    padding: 60px;
    border-radius: 8px;
}

.company-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-vito {
    font-size: 36px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.logo-ag {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
}

.german-flag-bar {
    display: flex;
    width: 100%;
    height: 8px;
    margin-top: 10px;
}

.flag-color {
    flex: 1;
}

.flag-color.black {
    background-color: #000;
}

.flag-color.red {
    background-color: #DD0000;
}

.flag-color.yellow {
    background-color: #FFCE00;
}

.made-in-germany {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    margin-top: 10px;
}

.company-text-section {
    color: #fff;
}

.company-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.company-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--vito-yellow);
    margin-top: 30px;
    margin-bottom: 20px;
}

.company-text-block {
    margin-bottom: 25px;
}

.company-text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 1024px) {
    .company-content-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-logo-section {
        align-items: center;
        text-align: center;
    }
    
    .slider-text h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .company-content-section {
        padding: 40px 20px;
    }
    
    .company-content-main {
        padding: 40px 30px;
    }
    
    .company-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .slider-text h1 {
        font-size: 32px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
}

/* News Page Styles */
.news-header-section {
    background-color: var(--vito-yellow);
    padding: 60px 40px;
    text-align: center;
}

.news-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.news-main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--vito-blue);
    margin-bottom: 20px;
}

.news-title-underline {
    width: 100px;
    height: 4px;
    background-color: var(--vito-blue);
    margin: 0 auto;
}

.news-content-section {
    background-color: var(--vito-yellow);
    padding: 60px 40px;
    min-height: 60vh;
}

.news-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--vito-blue);
    padding: 60px;
    border-radius: 8px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background-color: var(--vito-yellow);
    border: 2px solid #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news-date-box {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--vito-blue);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 10;
    text-align: center;
    min-width: 60px;
}

.news-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.news-month {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}

.news-card-content {
    display: flex;
    flex-direction: column;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
}

.news-text {
    padding: 25px;
    color: #000;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 56px;
}

.news-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    min-height: 45px;
}

.news-read-more {
    display: inline-block;
    color: var(--vito-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.news-read-more:hover {
    color: #000;
    text-decoration: underline;
}

/* Article Detail Page Styles */
.article-content-section {
    background-color: var(--vito-yellow);
    padding: 60px 40px;
}

.article-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--vito-yellow);
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--vito-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    color: #666;
}

.article-author {
    font-weight: 600;
}

.article-image {
    margin: 40px 0;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
}

.article-image-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-source {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 30px;
}

.recent-news-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--vito-yellow);
}

.recent-news-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--vito-blue);
    margin-bottom: 30px;
}

.recent-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-news-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.recent-news-item:hover {
    background-color: var(--vito-yellow);
    text-decoration: none;
}

.recent-news-image {
    flex: 0 0 120px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-news-content {
    flex: 1;
}

.recent-news-date {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 600;
}

.recent-news-headline {
    font-size: 16px;
    font-weight: 600;
    color: var(--vito-blue);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .article-content-wrapper {
        padding: 40px 30px;
    }
    
    .article-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .news-header-section,
    .news-content-section {
        padding: 40px 20px;
    }
    
    .news-content-wrapper {
        padding: 30px 20px;
    }
    
    .news-main-title {
        font-size: 32px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .article-content-section {
        padding: 40px 20px;
    }
    
    .article-content-wrapper {
        padding: 30px 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .recent-news-item {
        flex-direction: column;
    }
    
    .recent-news-image {
        flex: 0 0 100%;
        height: 200px;
    }
}

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 1199px) {
    /* Header adjustments */
    .navbar-content {
        padding: 0 10px;
    }
    
    .navbar-brand {
        padding: 10px;
    }
    
    /* Hero section mobile */
    .hero {
        height: auto;
        min-height: 400px;
    }
    
    .hero-content-container {
        flex-direction: column;
    }
    
    .hero-left-content {
        min-height: 400px;
        background-image: url('../images/img_Promos_Header-industrial-fluid-care-and-filter.jpg');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        padding: 0;
        position: relative;
    }
    
    /* Mobilde hero-right-content'i gizle */
    .hero-right-content {
        display: none !important;
    }
    
    /* Mobilde hero-left-content içindeki içeriği göster */
    .hero-mobile-content {
        display: block !important;
    }
    
    .hero-left-content .hero-main-title {
        color: #fff;
        text-align: right;
        margin: 0;
        padding: 0;
        max-width: 50%;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 10;
    }
    
    .hero-left-content .hero-bottom-right {
        position: absolute;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 8px;
        z-index: 10;
    }
    
    .hero-left-content .hero-section .hero-certifications {
        display: flex !important;
        flex-direction: row !important;
        gap: 5px;
        align-items: flex-end !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-left-content .hero-section .hero-logo-section {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        flex-shrink: 0;
        margin: 0;
        padding: 0;
    }
    
    .hero-left-content .hero-section .hero-certifications img {
        max-width: 60px;
        height: auto;
        display: block;
        margin: 0;
    }
    
    .hero-left-content .hero-section .hero-vito-logo {
        max-width: 100px;
        height: auto;
        display: block;
        margin: 0;
    }
    
    /* Benefits section mobile */
    .benefits-boxes {
        flex-direction: column;
        gap: 20px;
    }
    
    .benefit-box {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 20px;
    }
    
    /* Quality features mobile */
    .quality-features-section {
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
    }
    
    /* Filtration process mobile */
    .filtration-panels {
        flex-direction: column;
        gap: 30px;
    }
    
    /* How it works mobile */
    .how-it-works-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .how-it-works-main {
        flex-direction: column;
    }
    
    .how-it-works-video {
        margin-top: 30px;
    }
    
    /* Product line mobile */
    .product-line-cards {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-line-card {
        min-width: 100%;
    }
    
    /* Customers mobile */
    .customers-logos {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .customer-logo-item {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
        border-right: none;
        border-bottom: 1px solid var(--vito-yellow);
    }
    
    .customer-logo-item:nth-child(even) {
        border-left: 1px solid var(--vito-yellow);
    }
    
    /* Contact section mobile */
    .contact-container {
        flex-direction: column;
    }
    
    .contact-map {
        height: 300px;
        min-height: 300px;
    }
    
    .contact-panel {
        padding: 30px 20px;
    }
    
    /* Footer mobile */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* News page mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-card {
        flex-direction: column;
    }
    
    .news-date-box {
        position: static;
        width: 100%;
        border-radius: 8px 8px 0 0;
    }
    
    .news-card-content {
        flex-direction: column;
    }
    
    .news-image {
        height: 200px;
    }
    
    /* Article page mobile */
    .article-content-wrapper {
        padding: 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-image img {
        width: 100%;
    }
    
    /* Products page mobile */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Demo page mobile */
    .demo-hero-title {
        font-size: 32px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-steps {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Company page mobile */
    .company-slider-container {
        height: 300px;
    }
    
    .company-content-wrapper {
        flex-direction: column;
    }
    
    /* Product detail page mobile */
    .product-detail-gallery {
        flex-direction: column;
    }
    
    .product-detail-main-image {
        width: 100%;
    }
    
    .product-detail-thumbnails {
        flex-direction: row;
        overflow-x: auto;
    }
    
    /* Product main image mobile - fixed height */
    .product-main-image {
        height: 350px; /* Smaller fixed height on mobile */
    }
    
    /* Thumbnail navigation mobile */
    .product-thumbnails-wrapper {
        gap: 5px;
    }
    
    .thumbnail-nav {
        width: 30px;
        height: 30px;
    }
    
    .thumbnail-nav i {
        font-size: 12px;
    }
    
    .product-thumbnail {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    /* Smaller mobile adjustments */
    .hero-main-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .customers-logos {
        flex-direction: column;
    }
    
    .customer-logo-item {
        flex: 0 0 100%;
        min-width: 100%;
        border-left: none;
        border-right: none;
    }
    
    .contact-map {
        height: 250px;
    }
    
    .news-date-box {
        width: 80px;
        height: 80px;
    }
    
    .news-day {
        font-size: 24px;
    }
    
    .news-month {
        font-size: 10px;
    }
    
    /* Demo page smaller mobile */
    .demo-hero-section {
        padding: 40px 15px;
    }
    
    .demo-hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .demo-hero-subtitle {
        font-size: 14px;
    }
    
    .demo-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .why-choose-section,
    .demo-how-it-works-section,
    .demo-form-section {
        padding: 40px 15px;
    }
    
    .why-choose-section .section-title,
    .demo-how-it-works-section .section-title,
    .demo-form-section .section-title {
        font-size: 24px;
    }
    
    .why-choose-item h3 {
        font-size: 18px;
    }
    
    .step-item h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-main-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .contact-panel {
        padding: 20px 15px;
    }
    
    .news-card {
        padding: 15px;
    }
    
    .article-content-wrapper {
        padding: 15px;
    }
    
    /* Demo page extra small */
    .demo-hero-section {
        padding: 30px 10px;
    }
    
    .demo-hero-title {
        font-size: 20px;
    }
    
    .demo-hero-subtitle {
        font-size: 13px;
    }
    
    .demo-cta-button {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
    
    .why-choose-section,
    .demo-how-it-works-section,
    .demo-form-section {
        padding: 30px 10px;
    }
    
    .why-choose-section .section-title,
    .demo-how-it-works-section .section-title,
    .demo-form-section .section-title {
        font-size: 20px;
    }
    
    .why-choose-item,
    .step-item {
        padding: 20px 15px;
    }
    
    .demo-form {
        padding: 20px 15px;
    }
}

/* Demo Page Styles */
.demo-hero-section {
    background: linear-gradient(135deg, var(--vito-blue) 0%, #002d5a 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.demo-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.demo-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.demo-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.demo-cta-button {
    display: inline-block;
    background-color: var(--vito-yellow);
    color: #000;
    padding: 18px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.demo-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #000;
}

.why-choose-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 36px;
    color: var(--vito-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.why-choose-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    font-size: 48px;
    color: var(--vito-blue);
    margin-bottom: 20px;
}

.why-choose-item h3 {
    font-size: 22px;
    color: var(--vito-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.demo-how-it-works-section {
    padding: 80px 20px;
    background-color: white;
}

.demo-how-it-works-section .section-title {
    text-align: center;
    font-size: 36px;
    color: var(--vito-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.demo-how-it-works-section .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--vito-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 20px;
    color: var(--vito-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.demo-form-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.demo-form-section .section-title {
    text-align: center;
    font-size: 36px;
    color: var(--vito-blue);
    margin-bottom: 40px;
    font-weight: 700;
}

.demo-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.demo-form .form-group {
    margin-bottom: 25px;
}

.demo-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.demo-form .form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.demo-form .form-group label input[type="checkbox"] {
    margin-right: 8px;
}

.demo-submit-button {
    width: 100%;
    padding: 18px;
    background-color: var(--vito-blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.demo-submit-button:hover {
    background-color: #002d5a;
}

@media (max-width: 768px) {
    .demo-hero-title {
        font-size: 32px;
    }
    
    .demo-hero-subtitle {
        font-size: 16px;
    }
    
    .demo-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .demo-hero-section {
        padding: 60px 20px;
    }
    
    .demo-hero-title {
        font-size: 32px;
    }
    
    .demo-hero-subtitle {
        font-size: 16px;
    }
    
    .demo-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .why-choose-section,
    .demo-how-it-works-section,
    .demo-form-section {
        padding: 50px 20px;
    }
    
    .why-choose-section .section-title,
    .demo-how-it-works-section .section-title,
    .demo-form-section .section-title {
        font-size: 28px;
    }
    
    .why-choose-section .section-subtitle,
    .demo-how-it-works-section .section-subtitle {
        font-size: 16px;
    }
    
    .why-choose-grid,
    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-choose-item {
        padding: 25px 20px;
    }
    
    .step-item {
        padding: 25px 20px;
    }
    
    .demo-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .demo-submit-button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
}