/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-submit {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #4bb3b3;
    color: white;
}

.btn-primary:hover {
    background-color: #3a9999;
}

.btn-secondary {
    background-color: transparent;
    color: #4bb3b3;
    border: 1px solid #4bb3b3;
}

.btn-submit {
    background-color: #4bb3b3;
    color: white;
    align-self: flex-end;
}

/* Header */
header {
    padding: 20px 0;
    background-color: white;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    padding: 15px 0;
}

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

.cookie-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: left;
}

.cookie-content p {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 0;
}

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

/* Hero Section */
.hero {
    background-color: #1a1a1a;
    color: white;
    padding: 0;
    background-image: url("./img/1.png");
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 0;
}

.hero-text {
    grid-column: 1 / span 1;
    grid-row: 1 / span 3;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image {
    background-size: cover;
    background-position: center;
}

.hero-image.image1 {
    grid-column: 2 / span 1;
    grid-row: 1 / span 1;
    background-image: url('https://via.placeholder.com/400x200');
}

.hero-image.image2 {
    grid-column: 3 / span 1;
    grid-row: 1 / span 1;
    background-image: url('https://via.placeholder.com/400x200');
}

.hero-image.image3 {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
    background-image: url('https://via.placeholder.com/400x200');
}

.hero-image.image4 {
    grid-column: 3 / span 1;
    grid-row: 2 / span 1;
    background-image: url('https://via.placeholder.com/400x200');
}

.hero-image.image5 {
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    background-image: url('https://via.placeholder.com/400x200');
}

.hero-image.image6 {
    grid-column: 3 / span 1;
    grid-row: 3 / span 1;
    background-image: url('https://via.placeholder.com/400x200');
}

/* As Seen In Section */
.as-seen-in {
    padding: 30px 0;
    background-color: #1a1a1a;
    color: #4bb3b3;
}

.as-seen-in h2 {
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.logo-item {
    padding: 0 20px;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

/* Who We Are Section */
.who-we-are {
    padding: 60px 0;
    background-color: #f0f0f0;
}

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

.about-image {
    flex: 1;
    border: 4px solid #4bb3b3;
}

.about-image img {
    display: block;
}

.about-text {
    flex: 1;
}

.about-text p:first-of-type {
    font-weight: bold;
}

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

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
    height: 100%;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #4bb3b3;
    color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    position: relative;
    padding: 20px;
}

.quote {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-card h3 {
    margin-top: 20px;
}

/* Feature Image */
.feature-image {
    padding: 0;
}

.feature-image img {
    display: block;
    width: 100%;
}

/* Contact Form */
.contact {
    padding: 60px 0;
    background-color: #1a1a1a;
    color: white;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

input, textarea {
    padding: 12px;
    border: none;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
}

.footer-top, .footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank-you {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.thank-you h1 {
    color: #333;
}

.thank-you-footer {
    margin-top: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-grid {
        grid-template-rows: repeat(2, 200px);
    }
    
    .hero-text {
        grid-column: 1 / span 3;
        grid-row: 1 / span 1;
    }
    
    .hero-image.image1 {
        grid-column: 1 / span 1;
        grid-row: 2 / span 1;
    }
    
    .hero-image.image2 {
        grid-column: 2 / span 1;
        grid-row: 2 / span 1;
    }
    
    .hero-image.image3 {
        grid-column: 3 / span 1;
        grid-row: 2 / span 1;
    }
    
    .hero-image.image4, .hero-image.image5, .hero-image.image6 {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto 200px;
    }
    
    .hero-text {
        grid-column: 1;
        grid-row: 1;
        padding: 30px;
    }
    
    .hero-image.image1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-image.image2, .hero-image.image3 {
        display: none;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}