 /* Reset CSS */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #f8d22a;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 800px;
}

.btn-primary {
    background-color: #f8d22a;
    color: #333;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e6c01a;
}

/* Main Content */
.main-section {
    padding: 5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.main-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.main-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.main-image {
    flex: 1;
    min-width: 300px;
}

.main-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Strategic Advantage Section */
.strategic-section {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

.strategic-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.strategic-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background-color: #333;
    color: white;
    padding: 2rem;
    border-radius: 5px;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-box p {
    margin: 0;
    font-size: 1rem;
}

/* Why Work With Us Section */
.why-us-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 5px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-card p {
    font-size: 1rem;
}

/* Contact Form Section */
.contact-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./imgs/2.png');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-submit {
    width: 100%;
    background-color: #f8d22a;
    color: #333;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #e6c01a;
}

/* Footer */
footer {
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: #777;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    padding: 1.5rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    margin-bottom: 1rem;
}

.cookie-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.95rem;
    max-width: 800px;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}

.accept-all {
    background-color: #f8d22a;
    color: #333;
}

.reject-optional {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .main-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .main-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .strategic-section,
    .why-us-section {
        padding: 3rem 1.5rem;
    }

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

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

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

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0.5rem;
    }

    .stat-box {
        min-width: 100%;
    }
}

/* Hide cookie banner when accepted */
.cookie-banner.hidden {
    display: none;
}