@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    background: #f9fafb;
    box-sizing: border-box;
    width: 100%;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-50px);
}

.hero-text-section h1 {
    font-size: 2.2rem;
    color: #005b2e;
    margin: 0 0 0.5rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: 'Roboto', sans-serif;
    text-align: left;
}

.hero-cta {
    display: inline-block;
    background-color: #005b2e;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero-cta:hover {
    background-color: #003018;
    transform: scale(1.05);
}

.participants-section {
    padding: 3rem 0;
    margin-bottom: 3rem;
    text-align: center;
}

.participants-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 2rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.participant-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.participant-card h3 {
    font-size: 1.6rem;
    color: #005b2e;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.participant-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.participant-card .citizenship {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.participant-card .citizenship i {
    color: #00a650;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.participant-card .citizenship:hover {
    background: #e8f0ee;
}

.participant-card .share {
    font-size: 1.3rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.participant-card .share i {
    color: #00a650;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.participant-card .share span {
    color: #005b2e;
    font-weight: 700;
}

.participant-card .share:hover {
    background: #e8f0ee;
}

.disclaimer-section {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: left;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.disclaimer-section p {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
}

html, body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        height: 300px;
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .hero-text-section {
        transform: translateY(-30px);
        padding: 1.5rem;
    }

    .hero-text-section h1 {
        font-size: 1.8rem;
    }

    .hero-text-section p {
        font-size: 1.1rem;
    }

    .participants-section h2 {
        font-size: 1.6rem;
    }

    .participants-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .participant-card h3 {
        font-size: 1.5rem;
    }

    .participant-card .citizenship,
    .participant-card .share {
        font-size: 1.1rem;
    }
}

@media (max-width: 479px) {
    .hero-section {
        height: 250px;
    }

    .participant-card h3 {
        font-size: 1.4rem;
    }
}