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

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: #FFD700;
    color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

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

.hero {
    background: linear-gradient(135deg, #6B21A8 0%, #7C3AED 50%, #8B5CF6 100%);
    color: #fff;
    padding: 80px 20px;
}

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

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

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

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

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

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

.about {
    padding: 80px 20px;
    background: #fff;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #6B21A8;
}

.about p {
    margin-bottom: 20px;
    font-size: 17px;
    max-width: 800px;
}

.tasks {
    padding: 80px 20px;
    background: #F5F3FF;
}

.tasks h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #6B21A8;
}

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

.tasks-list li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #E5E7EB;
}

.tasks-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7C3AED;
    font-weight: bold;
    font-size: 20px;
}

.requirements {
    padding: 80px 20px;
    background: #fff;
}

.requirements h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #6B21A8;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.requirements-box {
    background: #F5F3FF;
    padding: 30px;
    border-radius: 12px;
}

.requirements-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #6B21A8;
}

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

.requirements-box li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.requirements-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 24px;
    line-height: 1;
}

.process {
    padding: 80px 20px;
    background: #F5F3FF;
}

.process h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #6B21A8;
}

.timeline {
    max-width: 700px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #7C3AED;
}

.timeline-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: #7C3AED;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #6B21A8;
}

.timeline-content p {
    color: #666;
    font-size: 15px;
}

.faq {
    padding: 80px 20px;
    background: #fff;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #6B21A8;
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 20px 0;
}

.faq-question {
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    padding-right: 30px;
    position: relative;
    color: #333;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    color: #7C3AED;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding-top: 15px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #6B21A8 0%, #7C3AED 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}

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

    .hero h1 {
        font-size: 32px;
    }

    .hero-points {
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right {
        order: -1;
    }

    .hero-right img {
        max-width: 300px;
    }

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

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
