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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-consent-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.cookie-content {
    background-color: #55c2c2;
    padding: 30px;
    border-radius: 0;
    max-width: 800px;
    text-align: center;
    color: white;
}

.cookie-consent-mobile .cookie-content {
    padding: 20px;
    max-width: 100%;
}

.cookie-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    min-width: 150px;
}

.cookie-btn.accept {
    background-color: white;
    color: #333;
}

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

/* Header and Navigation */
header {
    background-color: #f0f0f0;
}

.top-nav {
    background-color: #888;
    padding: 8px 20px;
}

.top-nav .home-link {
    color: white;
    font-size: 0.9rem;
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #55c2c2;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: #f8f8f8;
    background-image: url('./assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: top right;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-image {
    position: relative;
    height: 100%;
}

.hero-image:after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 1000px;
    height: 1000px;
    background-color: #6a1b9a;
    transform: rotate(45deg);
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background-color: #55c2c2;
    color: white;
    padding: 12px 25px;
    margin-top: 10px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #489b9b;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-image: url('./assets/services-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.stat-card {
    background-color: #55c2c2;
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.stat-card.wide {
    grid-column: span 2;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border-bottom: 3px solid #55c2c2;
}

.testimonial-quote {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: #6a1b9a;
    opacity: 0.2;
    line-height: 1;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #6a1b9a;
    color: white;
}

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

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    border: none;
    border-radius: 0;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

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

.submit-btn {
    background-color: #6a1b9a;
    color: white;
    border: 1px solid white;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: white;
    color: #6a1b9a;
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #55c2c2;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #555;
}

.footer-links p {
    margin-top: 10px;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image:after {
        top: -50px;
        right: -50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card.wide {
        grid-column: span 1;
    }
    
    .cookie-consent {
        display: none;
    }
    
    .cookie-consent-mobile {
        display: block;
    }
}

@media (max-width: 576px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

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

.main-section {
    padding: 80px 0;
}