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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

.cookie-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.cookie-btn.reject:hover {
    background: #666;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-top {
    background: #e74c3c;
    color: white;
    padding: 12px 0;
    text-align: center;
}

.brand-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0 60px;
    margin-top: 44px;
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: justify;
}

.cta-button {
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.services h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.services-intro {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: justify;
}

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

.service-card {
    background: transparent;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.9rem;
    text-align: justify;
}

.services-cta {
    text-align: left;
    margin-top: 2rem;
}

/* Process Section */
.process {
    background: white;
    padding: 60px 0;
}

.process h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.process-intro {
    font-size: 1rem;
    color: #5a6c7d;
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: justify;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse .step-content {
    direction: ltr;
}

.process-step img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content p {
    color: #5a6c7d;
    line-height: 1.7;
    text-align: justify;
}

/* Solutions Section */
.solutions {
    background: #f0f0f0;
    padding: 60px 0;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solutions-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2c3e50;
}

.solution-item {
    margin-bottom: 2rem;
}

.solution-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.solution-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: justify;
}

.solutions-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Impact Section */
.impact {
    background: white;
    padding: 60px 0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.impact-text p {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.impact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Partners Section */
.partners {
    background: #1a1a1a;
    color: white;
    padding: 60px 0;
}

.partners h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
}

.partners-intro {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.partner-card span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 60px 0;
}

.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.3;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #5a6c7d;
    line-height: 1.6;
    text-align: justify;
}

/* Contact Section */
.contact {
    background: #f0f0f0;
    padding: 60px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: #5a6c7d;
    line-height: 1.7;
    text-align: justify;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
}

.form-group select {
    cursor: pointer;
}

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

.submit-button {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #e74c3c;
}

.footer-contact p,
.footer-legal p {
    color: #ccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step.reverse {
        direction: ltr;
    }

    .solutions-content {
        grid-template-columns: 1fr;
    }

    .impact-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .services h2,
    .process h2,
    .solutions-text h2,
    .impact-text h2,
    .partners h2,
    .faq h2,
    .contact-text h2 {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .services,
    .process,
    .solutions,
    .impact,
    .partners,
    .faq,
    .contact {
        padding: 40px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}