/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #adff2f;
    color: #000;
    padding: 15px 20px;
    z-index: 1000;
    display: none;
    transition: transform 0.3s ease;
}

.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: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #000;
    color: #adff2f;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background-color: #000;
    padding: 15px 0;
}

.header-redesign {
    background-color: #adff2f;
    color: #000;
    padding: 10px;
    border-radius: 25px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    max-width: 100%;
    display: block;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%), url('./images/hero.jpg');
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 60px 0;
    min-height: 600px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text > p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-feature h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #adff2f;
}

.hero-feature p {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services {
    background-color: #000;
    color: white;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    max-width: 350px;
    flex: 1;
    min-width: 300px;
}

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: #000;
    color: white;
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #000;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact > p {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

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

.form-group input:focus {
    outline: none;
    background-color: #444;
}

.submit-btn {
    background-color: #adff2f;
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background-color: #9ee02a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #adff2f;
    color: #000;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-right a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-right a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: left;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-feature h2 {
        font-size: 1.5rem;
    }
    
    .services h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 1.7rem;
    }
    
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .hero-feature h2 {
        font-size: 1.3rem;
    }
    
    .services h2,
    .contact h2,
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

.about-text ul {
    margin-bottom: 20px;
}