/* ============================================
   Loblich - Smeg Style 1:1 Replica
   ============================================ */

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

:root {
    --color-black: #000000;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;
    --color-border: #e5e5e5;
    --color-white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.7;
}

/* ============================================
   Navigation
   ============================================ */

.header {
    background-color: var(--color-black);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #222222;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-logo a {
    font-size: 26px;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    opacity: 0.8;
}

.nav-item > a:hover {
    opacity: 1;
}

/* Dropdown */
.has-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 220px;
    padding: 10px 0;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 8px 20px;
}

.dropdown li a {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-gray-dark);
    letter-spacing: 0.5px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ============================================
   Full Screen Hero
   ============================================ */

.hero-fullscreen {
    width: 100%;
    height: calc(100vh - 80px);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: var(--color-white);
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    text-transform: uppercase;
}

.btn:hover {
    background-color: var(--color-gray-dark);
    opacity: 1;
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-light:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-black);
    color: var(--color-black);
}

.btn-outline:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ============================================
   Product Categories Grid - 2x2 like Smeg
   ============================================ */

.product-categories {
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.product-category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: block;
}

.product-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    color: var(--color-white);
    transition: var(--transition);
}

.product-category-card:hover img {
    transform: scale(1.05);
}

.category-title {
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.category-subtitle {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* ============================================
   About Brand Section
   ============================================ */

.about-brand {
    padding: 80px 20px;
    background-color: var(--color-black);
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--color-white);
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* ============================================
   News Section - Grid Layout (3 cards like smeg.com)
   ============================================ */

.news-section {
    padding: 80px 20px;
    background-color: var(--color-black);
}

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

.section-title {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: var(--color-white);
    text-align: left;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--color-gray-dark);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 12px;
    color: var(--color-gray-light);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--color-white);
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 300;
}

.read-more {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.5px;
    border-bottom: 1px solid transparent;
}

.read-more:hover {
    border-bottom-color: var(--color-white);
}

.news-view-more {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   Footer - 1:1 matching smeg.com layout
   ============================================ */

.footer {
    background-color: var(--color-black);
    padding: 40px 40px 30px;
    color: var(--color-white);
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Top section: three columns exactly like smeg.com */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #999999;
    font-size: 13px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.3px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-column ul li span.footer-contact-phone {
    color: #999999;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-column ul li a:hover {
    color: var(--color-white);
}

.footer-column ul li span {
    color: #999999;
    font-size: 13px;
    padding: 0 8px;
}

/* Bottom section: legal links + company info exactly like smeg.com */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 25px;
}

.footer-legal {
    margin-bottom: 20px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.footer-legal-links li {
    display: flex;
    align-items: center;
}

.footer-legal-links li a {
    color: #999999;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 300;
    text-decoration: none;
}

.footer-legal-links li a:hover {
    color: var(--color-white);
}

.footer-legal-links li span {
    color: #999999;
    font-size: 12px;
    padding: 0 10px;
}

.footer-company-info {
    color: #999999;
    font-size: 13px;
    font-weight: 300;
}

.footer-company-info p {
    margin: 5px 0;
    line-height: 1.6;
}

.footer-company-info .copyright {
    margin-top: 10px;
    color: #666666;
    font-size: 12px;
}

/* ============================================
   Responsive - Mobile
   ============================================ */

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 20px 0;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .has-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 1px;
    }

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

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        height: 70vh;
    }

    .news-image img {
        height: 250px;
    }

    .about-brand {
        padding: 50px 20px;
    }

    .news-section {
        padding: 50px 20px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 30px 20px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-legal-links li {
        margin-bottom: 8px;
    }

    .footer-legal-links li span {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        height: 70vh;
    }

    .news-image img {
        height: 250px;
    }

    .about-brand {
        padding: 50px 20px;
    }

    .news-section {
        padding: 50px 20px;
    }

    .footer {
        padding: 40px 20px 20px;
    }
}

/* ============================================
   Business Units Section - exactly like smeg.com
   ============================================ */

.business-units-section {
    padding: 80px 20px;
    background-color: var(--color-black);
}

.business-units-container {
    max-width: 1200px;
    margin: 0 auto;
}

.business-units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.business-unit-card {
    background-color: var(--color-gray-dark);
    overflow: hidden;
    transition: var(--transition);
}

.business-unit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.business-unit-image {
    width: 100%;
    overflow: hidden;
}

.business-unit-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.business-unit-content {
    padding: 30px;
}

.business-unit-content h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--color-white);
}

.business-unit-content p {
    font-size: 15px;
    color: var(--color-gray-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-weight: 300;
}

.business-unit-content .read-more {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .business-units-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-unit-image img {
        height: 250px;
    }
    
    .business-units-section {
        padding: 50px 20px;
    }
}

/* ============================================
   Sub Page Styles - Breadcrumb, Page Header, etc.
   ============================================ */

.page-header {
    margin-top: 80px;
    background-color: var(--color-black);
    padding: 40px 20px;
}

.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--color-gray-light);
    font-weight: 300;
}

.breadcrumb a {
    color: var(--color-gray-light);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb span {
    color: var(--color-white);
    margin: 0 8px;
}

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

.page-title {
    font-size: 42px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.page-description {
    font-size: 16px;
    color: var(--color-gray-light);
    font-weight: 300;
    max-width: 800px;
    line-height: 1.7;
}

/* Product Listing Grid */
.product-listing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.product-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--color-gray-dark);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #444444;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-card-image {
    width: 100%;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 25px;
}

.product-card-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--color-white);
}

.product-card-description {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.product-card-link {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

/* About Page Styles */
.about-content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-intro {
    max-width: 900px;
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--color-white);
}

.about-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.about-feature-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--color-gray-dark);
}

.about-feature-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-feature-card p {
    font-size: 14px;
    color: var(--color-gray-light);
    line-height: 1.7;
    font-weight: 300;
}

.about-image-full {
    width: 100%;
    margin: 60px 0;
}

.about-image-full img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* News Listing Page */
.news-filter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
}

.news-filter-list {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

.news-filter-list li a {
    font-size: 14px;
    color: var(--color-gray-light);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.news-filter-list li a:hover,
.news-filter-list li a.active {
    color: var(--color-white);
    border-bottom-color: var(--color-white);
}

.news-listing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.news-list-item {
    display: block;
    transition: var(--transition);
}

.news-list-item:hover {
    opacity: 0.9;
}

.news-list-item-image {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-list-item-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.news-list-item:hover .news-list-item-image img {
    transform: scale(1.03);
}

.news-list-item-category {
    font-size: 12px;
    color: var(--color-gray-light);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-list-item-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--color-white);
    line-height: 1.3;
}

.news-list-item-excerpt {
    font-size: 15px;
    color: var(--color-gray-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-box h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--color-white);
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--color-white);
}

.contact-info-item p,
.contact-info-item a {
    font-size: 15px;
    color: var(--color-gray-light);
    font-weight: 300;
    line-height: 1.6;
}

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

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--color-white);
}

.contact-form label .required {
    color: var(--color-white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444444;
    background-color: var(--color-gray-dark);
    font-size: 15px;
    font-weight: 300;
    font-family: inherit;
    color: var(--color-white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-white);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

/* Custom Solutions Page */
.custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.custom-intro {
    max-width: 900px;
    margin-bottom: 50px;
}

.custom-intro h2 {
    font-size: 28px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.custom-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray);
}

.custom-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.custom-process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--color-gray-light);
}

.custom-process-step .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 300;
    margin: 0 auto 20px;
}

.custom-process-step h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-process-step p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
    font-weight: 300;
}

/* Responsive for sub pages */
@media (max-width: 992px) {
    .product-grid-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-process {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-carousel-slide {
        flex: 0 0 50%;
    }
    
    .news-list-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .news-carousel-prev {
        left: 10px;
    }

    .news-carousel-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .product-grid-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-listing-section {
        padding: 30px 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-content-section {
        padding: 30px 20px;
    }
    
    .about-image-full img {
        height: 250px;
    }
    
    .news-filter-list {
        gap: 15px;
    }
    
    .news-list-item-image img {
        height: 250px;
    }
    
    .custom-process {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .news-listing-section {
        padding: 30px 20px;
    }

    .news-carousel-slide {
        flex: 0 0 100%;
    }

    .news-carousel-arrow {
        display: none;
    }
}
