:root {
    --primary: #0a1a35;
    --secondary: #2c8cff;
    --accent: #ff6b35;
    --light: #ffffff;
    --dark: #061225;
    --gray: #8a9fb5;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e5eb;
    --text-dark: #333333;
    --text-light: #666666;
    --success: #52c41a;
    --warning: #faad14;
    --error: #ff4d4f;
    --card-bg: #ffffff;
    --card-border: #e1e5eb;
    --text-color: var(--text-dark);
    --bg-color: var(--light-gray);
    --header-height: 70px;
}

[data-theme="dark"] {
    --primary: #0f1f3d;
    --secondary: #3a9bff;
    --accent: #ff7b4d;
    --light: #1a2332;
    --dark: #0a1425;
    --gray: #8a9fb5;
    --light-gray: #1e2a3d;
    --medium-gray: #2a3649;
    --text-dark: #e1e5eb;
    --text-light: #a0aec0;
    --card-bg: #1e2a3d;
    --card-border: #2a3649;
    --text-color: var(--text-dark);
    --bg-color: var(--light-gray);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

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

/* Header & Navigation Styles */
header {
    height: var(--header-height);
    background: var(--light);
    border-bottom: 1px solid var(--medium-gray);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    transition: transform 0.3s;
    outline: none;
}

.logo:hover, .logo:focus {
    transform: scale(1.05);
}

.logo-icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.2s;
    font-size: 0.95rem;
    outline: none;
}

nav ul li a:hover, nav ul li a:focus {
    color: var(--secondary);
}

nav ul li a.active {
    color: var(--secondary);
}

nav ul li a.active::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Login Button */
.login-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    outline: none;
}

.login-btn:hover, .login-btn:focus {
    background: #1a7de8;
    box-shadow: 0 4px 12px rgba(44, 140, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 26, 53, 0.3) 0%, rgba(6, 18, 37, 0.3) 100%), url('/src/header-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
    outline: none;
}

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

.btn-primary:hover, .btn-primary:focus {
    background: #1a7de8;
    box-shadow: 0 4px 12px rgba(44, 140, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    color: var(--text-color);
    font-weight: 600;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    font-weight: 600;
}

.card-title i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Styles pour le carrousel de produits */
.products-carousel {
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    padding: 0 40px;
}

.products-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    cursor: grab;
}

.products-wrapper:active {
    cursor: grabbing;
}

.product-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: var(--card-bg);
    border-radius: 6px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    outline: none;
}

[data-theme="dark"] .product-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-bottom: 1px solid var(--card-border);
    padding: 15px;
    background-color: var(--light-gray);
    filter: var(--image-filter, none);
}

[data-theme="dark"] .product-image {
    filter: invert(1) hue-rotate(180deg);
    background-color: var(--dark);
}

.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.product-description {
    flex-grow: 1;
    margin-bottom: 15px;
    color: var(--text-light);
}

.product-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    outline: none;
}

.product-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.product-link:hover i, .product-link:focus i {
    transform: translateX(5px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    outline: none;
}

[data-theme="dark"] .carousel-nav {
    background: var(--card-bg);
    color: var(--text-dark);
}

.carousel-nav:hover, .carousel-nav:focus {
    background: var(--secondary);
    color: white;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.carousel-indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
}

/* Menu latéral pour sous-catégories CNC - STYLE INSPIRÉ DE YG1 */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #0a1a35;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

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

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.close-sidebar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.close-sidebar:hover, .close-sidebar:focus {
    background: var(--secondary);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 20px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.subcategories-list {
    list-style: none;
}

.subcategory-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    color: white;
    text-decoration: none;
}

.subcategory-item:hover, .subcategory-item:focus {
    background: rgba(255, 255, 255, 0.1);
}

.subcategory-item.active {
    background: var(--secondary);
}

.subcategory-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.subcategory-item.active .subcategory-icon {
    color: white;
}

.subcategory-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.subcategory-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

/* Overlay pour le menu latéral */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Table Styles */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.info-table th, .info-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.info-table th {
    background: rgba(44, 140, 255, 0.05);
    color: var(--secondary);
    font-weight: 600;
    width: 30%;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 30px;
    border: 1px solid var(--card-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .contact-form {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 4px;
    border: 1px solid var(--medium-gray);
    background: var(--card-bg);
    color: var(--text-color);
    font-size: 1rem;
    transition: border 0.3s;
    outline: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(44, 140, 255, 0.2);
}

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

.submit-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    outline: none;
}

.submit-btn:hover, .submit-btn:focus {
    background: #1a7de8;
    box-shadow: 0 4px 12px rgba(44, 140, 255, 0.3);
}

.map-container {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 100%;
    min-height: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .map-container {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#map {
    height: 100%;
    width: 100%;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, rgba(10, 26, 53, 0.3) 0%, rgba(6, 18, 37, 0.3) 100%), url('/src/footer-bg.png') no-repeat center center;
    background-size: cover;
    padding: 40px 0;
    border-top: 1px solid var(--medium-gray);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
    font-weight: 600;
}

.footer-column p, .footer-column a {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover, .footer-column a:focus {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--card-bg);
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background: var(--secondary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.3rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    outline: none;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    background: var(--light-gray);
    text-align: center;
    border-top: 1px solid var(--medium-gray);
}

.modal-footer a {
    color: var(--secondary);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.modal-footer a:hover, .modal-footer a:focus {
    text-decoration: underline;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    outline: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    outline: none;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--medium-gray);
    }
    
    [data-theme="dark"] nav ul {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li a.active::after {
        bottom: -5px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .products-carousel {
        padding: 0 20px;
    }
    
    .sidebar-menu {
        width: 280px;
        left: -280px;
    }
}

@media (max-width: 480px) {
    .sidebar-menu {
        width: 260px;
        left: -260px;
    }
}

/* AJOUTER DANS LA SECTION CSS EXISTANTE */
img[alt] {
    font-size: 14px;
    color: #666;
}

/* Optimisation chargement images */
.product-image {
    loading: lazy;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
}

/* Amélioration accessibilité - contraste */
.carousel-nav:focus, .carousel-indicator:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

.product-card:focus {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Styles pour le focus visible */
button:focus-visible, a:focus-visible, .product-card:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

/* Styles pour l'effet de survol du menu latéral avec inversion de couleurs */
.menu-content {
    position: relative;
    display: flex;
    align-items: center;
}

.normal-state {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hover-state {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.subcategory-item:hover .normal-state,
.subcategory-item:focus .normal-state {
    opacity: 0;
}

.subcategory-item:hover .hover-state,
.subcategory-item:focus .hover-state {
    display: flex;
    animation: slideIn 0.3s ease;
}

.hover-icon-main, .hover-icon-rotated {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-ico {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

/* Inversion des couleurs pour les icônes .ico */
.hover-ico.inverted {
    filter: brightness(0) invert(1) sepia(1) saturate(300%) hue-rotate(180deg) brightness(0.9);
}

.hover-ico.rotated {
    transform: rotate(90deg);
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.hover-icon-main .hover-ico {
    width: 40px;
    height: 40px;
}

/* Animation d'entrée */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Ajustements pour l'état actif */
.subcategory-item.active .normal-state {
    opacity: 1;
}

.subcategory-item.active .hover-state {
    display: none;
}

/* Ajustement de l'espacement */
.subcategory-item {
    padding: 15px;
    position: relative;
}

.subcategory-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
}

.subcategory-item.active .subcategory-icon {
    color: white;
}

.subcategory-name {
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Effet de survol amélioré */
.subcategory-item {
    background: transparent;
    transition: all 0.3s ease;
}

.subcategory-item:hover,
.subcategory-item:focus {
    background: rgba(255, 255, 255, 0.1);
}

.subcategory-item.active {
    background: var(--secondary);
}

/* Version alternative avec effet de contraste plus fort */
.hover-ico.inverted.alternative {
    filter: brightness(0) invert(1) sepia(1) saturate(500%) hue-rotate(160deg) brightness(1.2) contrast(1.5);
}

/* Styles pour tous les menus latéraux */
.sidebar-menu:not(#sidebar-menu) {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #0a1a35;
    z-index: 2000;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.sidebar-menu:not(#sidebar-menu).active {
    left: 0;
}

.sidebar-overlay:not(#sidebar-overlay) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay:not(#sidebar-overlay).active {
    opacity: 1;
    visibility: visible;
}

/* Contact page specific styles */
.contact-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 26, 53, 0.3) 0%, rgba(6, 18, 37, 0.3) 100%), url('/src/contact-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.business-hours {
    background: var(--card-bg);
    border-radius: 6px;
    padding: 25px;
    margin-top: 40px;
    border: 1px solid var(--card-border);
}

.business-hours h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.hours-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-day {
    font-weight: 500;
    color: var(--text-color);
}

.hour-time {
    color: var(--text-light);
}