/* Modern Professional Design for Vako Seals - EORI Style */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85A2B;
    --primary-light: #FF8C5A;
    --secondary-color: #2C3E50;
    --accent-color: #FF6B35;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 5px 20px rgba(255,107,53,0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Header Styles */
header {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    padding: 0;
    flex-shrink: 1;
    min-width: 0;
}

.logo-section img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-section:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.logo-section img[src*="logo.gif"] {
    height: 38px;
}

.logo-section img[src*="VAKO"] {
    height: 35px;
    margin: 0 5px;
}

.company-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.company-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Navigation */
nav {
    background: transparent;
    padding: 0;
    border-top: none;
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 0;
    transition: max-height 0.3s ease-out;
}

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

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: var(--text-dark);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    order: -1;
}

.menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
}

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

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.3rem;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    background: transparent;
    position: relative;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu li a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.08);
    transform: translateY(-1px);
}

.nav-menu li a:hover::before {
    width: 80%;
}

.nav-menu li a.active {
    color: white;
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    transform: translateY(-1px);
}

.nav-menu li a.active::before {
    display: none;
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF8C5A 0%, #FF6B35 50%, #E85A2B 100%);
    color: white;
    padding: 3rem 2rem;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 400;
    line-height: 1.7;
}

/* Content Sections */
.content-section {
    background: var(--bg-white);
    padding: 4rem 2rem;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-section h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.content-section h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.content-section p {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    font-weight: 500;
}

.content-section a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
    transform: translateX(2px);
    display: inline-block;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 0 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.card h3 {
    transition: color 0.3s ease;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.card:hover h3 {
    color: var(--primary-color);
}

.card p {
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.7;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

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

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image Slider/Carousel */
.image-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    background: var(--bg-white);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

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

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

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

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-controls:hover {
    background: rgba(255, 107, 53, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-white);
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
}

.slider-dots .dot.active {
    background: var(--primary-color);
    border-color: var(--primary-dark);
    transform: scale(1.3);
}

/* Slider for hero/banner images */
.hero-slider .slider-container {
    padding-bottom: 40%; /* Different aspect ratio for hero */
}

.hero-slider .slide img {
    object-fit: cover;
}

/* Slider for gallery images */
.gallery-slider .slider-container {
    padding-bottom: 75%; /* Square-ish for product images */
}

/* Forms */
.form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

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

.required {
    color: #e74c3c;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
    font-family: inherit;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn:active {
    transform: translateY(-1px) scale(1.02);
}

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

.btn-secondary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.2);
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    transform: translateX(2px);
    display: inline-block;
}

/* Product List */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.product-item:hover {
    transform: translateX(4px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.12);
    border-left-width: 6px;
    border-color: rgba(255, 107, 53, 0.2);
}

.product-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    margin: 1rem 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: opacity 0.3s ease;
}

.footer-links a {
    position: relative;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-text {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ISO Badge */
.iso-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    margin: 1rem 0;
    font-size: 0.9rem;
}

/* News Section */
.news-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 0.75rem 1rem;
        position: relative;
        gap: 0.75rem;
    }

    .logo-section {
        gap: 0.3rem;
        flex-shrink: 1;
        min-width: 0;
        flex: 1;
    }

    .logo-section img {
        height: 32px;
        max-width: 100%;
    }

    .logo-section img[src*="VAKO"] {
        height: 28px;
        margin: 0 3px;
    }

    .logo-section img[src*="logo.gif"] {
        height: 32px;
    }

    .menu-toggle {
        display: flex;
        position: static;
        transform: none;
        background: transparent;
        flex-shrink: 0;
        order: -1;
        margin-right: 0;
    }

    .menu-toggle:hover {
        background: rgba(255, 107, 53, 0.1);
    }

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

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

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

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--primary-color);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        width: 100%;
    }

    nav.active {
        max-height: 500px;
    }

    .nav-container {
        padding: 0;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0;
        gap: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    nav.active .nav-menu {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu li a {
        text-align: left;
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 107, 53, 0.1);
        font-size: 0.9rem;
        width: 100%;
    }

    .nav-menu li a::before {
        display: none;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-menu li a:hover {
        background: rgba(255, 107, 53, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
        padding-left: 2rem;
    }

    .nav-menu li a.active {
        background: var(--primary-color);
        color: white;
        transform: none;
        padding-left: 1.5rem;
        box-shadow: inset 4px 0 0 rgba(255, 255, 255, 0.3);
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-section p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .card-grid,
    .contact-grid,
    .product-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 2rem 0;
    }

    .card {
        padding: 1.5rem;
    }

    .card h3 {
        font-size: 1.2rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .news-box {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }

    .news-box h3 {
        font-size: 1.2rem;
    }

    .news-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    main {
        padding: 0;
        overflow-x: hidden;
    }

    .slider-controls {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        padding: 0.4rem;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .hero-slider .slider-container {
        padding-bottom: 60%;
    }

    .gallery-slider .slider-container {
        padding-bottom: 100%;
    }

    .image-slider {
        margin: 0;
    }

    .slide img {
        object-fit: cover;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .logo-section img {
        max-width: none;
    }

    .footer-links {
        font-size: 0.85rem;
        line-height: 1.8;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .footer-links a {
        margin: 0 0.3rem;
        display: inline-block;
        white-space: nowrap;
    }

    .iso-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.5rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 0.75rem;
        gap: 0.5rem;
    }

    .logo-section img {
        height: 28px;
    }

    .logo-section img[src*="VAKO"] {
        height: 24px;
        margin: 0 2px;
    }

    .logo-section img[src*="logo.gif"] {
        height: 28px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 2.5rem 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .content-section {
        padding: 1.5rem 0.75rem;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }

    .card-grid,
    .contact-grid,
    .product-list {
        padding: 0 0.75rem;
        gap: 1rem;
    }

    .card {
        padding: 1.25rem;
    }

    .news-box {
        margin: 1.5rem 0.75rem;
        padding: 1.25rem;
    }

    .footer-links {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 0.2rem;
        overflow-x: auto;
        font-size: 0.8rem;
    }

    .footer-links a {
        margin: 0;
        white-space: nowrap;
    }

    .slide img {
        object-fit: cover;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.highlight {
    background: linear-gradient(120deg, rgba(1, 112, 185, 0.1) 0%, rgba(1, 112, 185, 0.1) 100%);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

