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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

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

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

.cookie-btn {
    background-color: #ff40e5;
    color: white;
    padding: 0.8rem 1.5rem;
}

/* Header */
header {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-size: 1.2rem;
    margin: 0;
    text-align: center;
}

/* Hero section */
.hero {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero h2 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-image {
    width: 250px;
    margin: 0 auto 2rem;
    transform: rotate(5deg);
    border: 10px solid white;
}

.hero-image img {
    display: block;
}

/* About section */
.about {
    text-align: center;
    padding: 4rem 0;
}

.about h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* Services section */
.services {
    padding: 4rem 0;
}

.services h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem 3rem;
}

.service-item {
    display: contents;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.service-item p {
    margin-bottom: 1.5rem;
}

/* Why Choose Us section */
.why-us {
    padding: 4rem 0;
}

.why-us h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.why-us-item {
    text-align: center;
}

.why-us-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    margin-bottom: 1rem;
}

.why-us-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-us-item p {
    font-size: 0.9rem;
}

/* Case Studies section */
.case-studies {
    padding: 4rem 0;
}

.case-studies h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-study img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin-bottom: 1rem;
}

.case-study blockquote {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.case-study cite {
    font-style: normal;
    font-weight: 700;
    display: block;
    margin-top: 0.5rem;
}

/* Contact form */
.contact {
    padding: 2rem 0;
    background-color: #1a1a1a;
    color: white;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
}

textarea {
    height: 150px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-links {
    margin: 1.5rem 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 1.5rem;
}

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

.footer-copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Cookie popups */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    color: white;
    z-index: 1000;
    display: none;
}

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

.cookie-popup.full-width {
    width: 100%;
    padding: 1.5rem;
}

.cookie-popup.compact {
    width: 400px;
    padding: 1.5rem;
    margin: 1rem;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.full-width .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    flex: 1;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .service-item h3 {
        margin-bottom: 0.5rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about h2,
    .services h2,
    .why-us h2,
    .case-studies h2 {
        font-size: 2rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .cookie-popup.compact {
        width: 90%;
        margin: 1rem auto;
    }
}

.thank-section {
    padding: 200px 0px;
    text-align: center;
}