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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #7FFFD4;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: left;
    margin: 20px;
}

.cookie-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #000;
}

.cookie-btn {
    background: #9370DB;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #7B68EE;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo span {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

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

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #7FFFD4;
}

/* Hero Section */
.hero {
    background: #7FFFD4;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
}

.cta-btn {
    background: #9370DB;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: #7B68EE;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #333;
}

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

.about-item {
    text-align: center;
    padding: 30px 20px;
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #7FFFD4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon img {
    width: 40px;
    height: 40px;
}

.about-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.about-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Testimonial */
.testimonial {
    padding: 80px 0;
    background: white;
}

.testimonial-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-text {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    position: relative;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 30px;
    top: -15px;
    width: 30px;
    height: 30px;
    background: #7FFFD4;
    transform: rotate(45deg);
}

.testimonial-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7FFFD4;
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

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

.service-item-wide .service-image img {
    height: 300px;
}

.service-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 25px 15px;
    color: #333;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 25px 25px;
    color: #666;
}

.service-item-wide h3,
.service-item-wide p {
    margin-left: 40px;
    margin-right: 40px;
}

.service-item-wide h3 {
    margin-top: 40px;
}

.service-item-wide p {
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #7FFFD4;
}

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

.contact-form h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(147, 112, 219, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #9370DB;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #7B68EE;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
}

/* Footer */
.footer {
    background: #9370DB;
    padding: 40px 0;
    color: white;
}

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

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links span {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-text {
        padding: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item-wide {
        grid-template-columns: 1fr;
    }
    
    .service-item-wide .service-image img {
        height: 250px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about h2,
    .services h2 {
        font-size: 32px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about,
    .services {
        padding: 60px 0;
    }
    
    .testimonial {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .contact-form h2 {
        font-size: 28px;
    }
    
    .cookie-content {
        padding: 30px;
        margin: 15px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
}