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

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

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

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

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

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    background: #dc2626;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.btn-decline {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.cookie-link {
    color: #ccc;
    text-decoration: underline;
    font-size: 14px;
}

/* Header */
.header {
    background: #000000;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #333;
}

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

.nav-brand {
    text-decoration: none;
}

.nav-brand span {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #dc2626;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #000000;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
}

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

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

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

.hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.badge {
    background: #dc2626;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

/* Mission Section */
.mission {
    background: #ffffff;
    padding: 80px 0;
    color: #000000;
}

.mission h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    color: #000000;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
    max-width: 800px;
}

.mission-content strong {
    color: #000000;
}

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

.services h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.services-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #333333;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    padding: 30px;
    border-radius: 8px;
    color: #ffffff;
}

.service-card.red {
    background-color: #dc2626;
}

.service-card.blue {
    background-color: #1e40af;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    opacity: 0.95;
}

.digital-transformation {
    background: #000000;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.digital-transformation h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.digital-transformation p {
    font-size: 16px;
    line-height: 1.6;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    color: #ffffff;
    background-image: url('./images/why-section-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
}

.why-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.why-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #cccccc;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.why-item {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

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

.why-item p {
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
}

/* Process Section */
.process-section {
    background: #ffffff;
    padding: 80px 0;
    color: #000000;
}

.process-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
}

.process-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    color: #333333;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-arrow {
    font-size: 28px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #dc2626;
}

.process-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    color: #ffffff;
    background-image: url('./images/contact-section-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #ffffff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #000000;
}

.contact-form input::placeholder {
    color: #999999;
}

.submit-btn {
    background: #dc2626;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #b91c1c;
}

/* Footer */
.footer {
    background: #dc2626;
    padding: 30px 0;
    color: #ffffff;
}

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

.footer-brand span {
    font-size: 18px;
    font-weight: 600;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero h1 {
        font-size: 32px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 15px;
    }

    .badge {
        font-size: 12px;
        padding: 10px 20px;
    }

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

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .mission h2,
    .services h2,
    .why-section h2,
    .process-section h2,
    .contact-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .service-card,
    .why-item,
    .process-card {
        padding: 25px;
    }

    .digital-transformation {
        padding: 30px 25px;
    }
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease-out;
}