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

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffff00;
    color: #000000;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.cookie-btn.accept {
    background: #000000;
    color: #ffffff;
}

.cookie-btn.decline {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.cookie-link {
    color: #000000;
    text-decoration: underline;
    font-size: 12px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 0 30px;
}

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

.logo {
    background: #ffff00;
    color: #000000;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 30px 50px;
}

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

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.highlight {
    color: #ffff00;
}

.hero p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #ffff00;
    color: #000000;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Sections */
.section-dark {
    background: #000000;
    padding: 100px 0;
}

.section-light {
    background: #111111;
    padding: 100px 0;
}

.section-dark h2,
.section-light h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
}

.section-dark p,
.section-light p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 40px;
    margin: 60px 0;
}

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

.service-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffff00;
}

.service-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* Team Image */
.team-image {
    text-align: center;
    margin-top: 50px;
}

.team-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 15px;
}

/* Contact Section */
.contact-section {
    background: #111111;
    padding: 100px 0;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.contact-section p {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

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

.form-group input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #333333;
    border-radius: 10px;
    background: #000000;
    color: #ffffff;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffff00;
}

.form-group input::placeholder {
    color: #888888;
}

.submit-button {
    width: 100%;
    background: #ffff00;
    color: #000000;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.3);
}

/* Footer */
.footer {
    background: #ffff00;
    color: #000000;
    padding: 40px 30px;
}

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

.footer-info {
    flex: 1;
}

.footer-links {
    margin-top: 15px;
    font-weight: 600;
    font-size: 12px;
}

.footer-details {
    flex: 1;
    text-align: right;
}

.footer-details p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }
    
    .nav {
        padding: 15px 0;
    }
    
    .logo {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .hero {
        padding: 80px 20px 40px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-dark,
    .section-light,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-dark h2,
    .section-light h2,
    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px 0;
    }
    
    .service-item img {
        height: 180px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-details {
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-direction: column;
        justify-content: flex-start;
        text-align: left;
    }

    .footer-info p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .section-dark h2,
    .section-light h2,
    .contact-section h2 {
        font-size: 24px;
    }
    
    .services-grid {
        margin: 30px 0;
    }
    
    .form-group input,
    .submit-button {
        padding: 15px 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}
