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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
}

.cookie-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.cookie-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.cookie-content p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

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

.btn-accept {
    background: #0066ff;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: #0052cc;
}

.btn-refuse {
    background: transparent;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Header */
.header {
    background: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #3b5998;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2d4373;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.about-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

/* Expertise Section */
.expertise {
    background: #f8f9fa;
    padding: 80px 0;
}

.expertise h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 50px;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.expertise-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
}

.expertise-card .icon {
    font-size: 40px;
    color: #3b5998;
    margin-bottom: 15px;
}

.expertise-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.expertise-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Opportunities Section */
.opportunities {
    padding: 80px 0;
}

.opportunities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.opportunities-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.opportunities-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

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

/* Impact Section */
.impact {
    background: #f8f9fa;
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

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

.impact-content h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 30px;
}

.impact-item {
    margin-bottom: 30px;
}

.impact-item h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.impact-item p {
    color: #555;
    line-height: 1.8;
}

/* Themes Section */
.themes {
    padding: 80px 0;
}

.themes h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 50px;
    text-align: center;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.theme-card {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3b5998;
}

.theme-card h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.theme-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

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

.contact h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-align: center;
}

.contact > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form textarea {
    resize: vertical;
}

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

/* Orientation Section */
.orientation {
    padding: 80px 0;
    text-align: center;
}

.orientation h2 {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.orientation p {
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.orientation .quote {
    color: #e91e63;
    font-size: 20px;
    font-style: italic;
    margin-top: 30px;
}

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

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

.footer-brand h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-brand ul {
    list-style: none;
}

.footer-brand ul li {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .about-grid,
    .opportunities-grid,
    .impact-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunities-grid .opportunities-content {
        order: 2;
    }
    
    .opportunities-grid .opportunities-image {
        order: 1;
    }
}