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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

.hero {
    text-align: center;
    padding: 80px 20px;
}

.logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.3rem;
    color: #888;
    margin-bottom: 60px;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 80px 0;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

.statement {
    text-align: center;
    padding: 60px 20px;
    margin: 80px 0;
}

.statement h2 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.statement .highlight {
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: #888;
    font-style: italic;
    margin: 40px 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 60px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
}

.btn-primary:hover {
    background: #e0e0e0;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
}

.about {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, 
        #0a0a0a 0%, 
        #0e2a1a 25%,
        #11472a 50%, 
        #0e2a1a 75%,
        #0a0a0a 100%);
    position: relative;
    width: 100%;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    color: #888;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.mission {
    margin: 60px 0;
    font-size: 1.3rem;
    font-style: italic;
}

.team {
    padding: 80px 20px;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.team-member {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #333;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.final-cta {
    text-align: center;
    padding: 80px 20px;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #222;
    margin-top: 80px;
}

footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.flags {
    font-size: 1.5rem;
    margin: 20px 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .statement h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 80%;
    }
}
