:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #007bff;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 50px;
}

/* Hero Slider */
.hero-slider .carousel-item {
    height: 768px;
    background-size: cover;
    background-position: center;
}

.hero-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto 0;
}

/* Gallery */
.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Clients Logo Slider */
.client-logos img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
    margin: 0 20px;
}

.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
}

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

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider .carousel-item {
        height: 400px;
    }
}
