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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.top-bar {
    background-color: #FFD700;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.top-bar a:hover {
    text-decoration: underline;
}

.hero {
    background: linear-gradient(135deg, #6B46C1 0%, #805AD5 50%, #9F7AEA 100%);
    padding: 80px 20px;
    color: white;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-points {
    list-style: none;
    margin-bottom: 30px;
}

.hero-points li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.hero-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-yellow {
    background-color: #FFD700;
    color: #333;
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

section {
    padding: 80px 20px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #6B46C1;
    text-align: center;
}

.about {
    background-color: #f9f9f9;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.tasks {
    background-color: white;
}

.tasks-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.tasks-list li {
    padding: 15px 20px;
    padding-left: 50px;
    position: relative;
    background-color: #f5f0ff;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #6B46C1;
}

.tasks-list li::before {
    content: "→";
    position: absolute;
    left: 20px;
    color: #6B46C1;
    font-weight: bold;
}

.requirements {
    background-color: #f9f9f9;
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.requirements-col {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.requirements-col h3 {
    color: #6B46C1;
    margin-bottom: 20px;
}

.requirements-col ul {
    list-style: none;
}

.requirements-col ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.requirements-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.5rem;
    line-height: 1;
}

.recruitment {
    background-color: white;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #6B46C1 0%, #805AD5 100%);
    color: white;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.timeline-step p {
    font-size: 0.95rem;
}

.faq {
    background-color: #f9f9f9;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #6B46C1;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.cta {
    background: linear-gradient(135deg, #6B46C1 0%, #805AD5 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: #FFD700;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-banner a {
    color: #FFD700;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-points li {
        text-align: left;
    }

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

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

    .timeline-step {
        max-width: 100%;
    }

    .top-bar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

.legal-content {
    padding: 60px 20px;
    background-color: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.legal-content h1 {
    font-size: 2.2rem;
    color: #6B46C1;
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.legal-content p {
    margin-bottom: 15px;
    max-width: 800px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: #6B46C1;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #666;
}
