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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    z-index: 1000;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

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

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #7c3aed;
}

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

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

/* Header */
.header {
    background: #8b5cf6;
    color: white;
    padding: 20px 0;
    border-radius: 0 0 30px 30px;
}

.header-brand h1 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: #f8fafc;
}

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

.hero-text h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.hero-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    line-height: 1.3;
}

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

.hero-bottom {
    text-align: center;
}

.hero-bottom-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

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

.about h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.about p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: justify;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.services-intro {
    font-size: 16px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
}

.cta-button {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Method Section */
.method {
    padding: 80px 0;
    background: white;
}

.method h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}

.method-intro {
    font-size: 16px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.method-steps {
    display: grid;
    gap: 40px;
}

.method-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #8b5cf6;
    min-width: 40px;
}

.method-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 15px;
    line-height: 1.3;
}

.method-step p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    text-align: justify;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: none;
    border-radius: 8px;
    background: #e5e7eb;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #374151;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #d1d5db;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

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

.submit-button {
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Poppins', sans-serif;
    justify-self: center;
    margin-top: 20px;
}

.submit-button:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #8b5cf6;
    color: white;
    padding: 40px 0 20px;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .method-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .step-number {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h2 {
        font-size: 18px;
    }
    
    .about h2,
    .services h2,
    .method h2,
    .contact h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .about,
    .services,
    .method,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .header-brand h1 {
        font-size: 20px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .cta-button,
    .submit-button {
        padding: 15px 30px;
        font-size: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 15px;
    }
}