/* Global Styles */
:root {
    --primary-bg: #f7fafc;
    --secondary-bg: #1a202c;
    --accent-color: #3182ce;
    --text-primary: #2d3748;
    --text-secondary: #718096;
    --text-light: #f7fafc;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Header & Navigation */
header {
    background-color: var(--primary-bg);
    box-shadow: var(--shadow-sm);
}

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

.nav-home {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-primary);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--primary-bg);
}

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

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.2rem;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Partner Section */
.partner {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--primary-bg);
}

.partner-content {
    flex: 1;
    min-width: 300px;
}

.partner h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.partner-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

/* Services Section */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 100%;
    height: auto;
}

/* Team Section */
.team {
    background-color: var(--secondary-bg);
    color: var(--text-light);
    padding: 4rem 2rem;
    text-align: center;
}

.team h2 {
    margin-bottom: 1rem;
}

.team > p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #2d3748;
    border-radius: 8px;
    padding: 2rem;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-member h4 {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--secondary-bg);
    color: var(--text-light);
}

.contact h2 {
    margin-bottom: 1rem;
}

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

form {
    max-width: 500px;
    margin: 2rem auto 0;
}

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

input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--card-bg);
    color: var(--text-primary);
    border: none;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow {
    margin-left: 0.5rem;
}

.submit-btn:hover {
    background-color: #e2e8f0;
}

/* Footer */
footer {
    background-color: var(--primary-bg);
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a, .footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal a:hover, .footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    max-width: 500px;
    width: 90%;
    z-index: 1000;
    display: none;
}

.cookie-popup.active {
    display: block;
    animation: fadeIn 0.5s;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

#accept-cookies {
    background-color: var(--accent-color);
    color: white;
}

#accept-cookies:hover {
    background-color: #2c5282;
}

#reject-cookies {
    background-color: #e2e8f0;
    color: var(--text-primary);
}

#reject-cookies:hover {
    background-color: #cbd5e0;
}

.main-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .top-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-home {
        display: none;
    }

    .logo-container {
        text-align: left;
    }

    .hero, .partner {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content, .partner-content {
        padding-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .footer-links, .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services {
        gap: 1rem;
    }

    .service-card {
        min-width: 100%;
    }

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