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

:root {
    --yellow: #FFD700;
    --purple: #6B3FA0;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

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

.top-bar {
    background: var(--yellow);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar span {
    font-weight: 500;
}

.top-bar a {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
}

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

.hero {
    background: var(--purple);
    padding: 60px 20px;
}

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

.hero-text {
    flex: 1;
    color: var(--white);
}

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

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

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

.benefits li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

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

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

.cta-button {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

section {
    padding: 60px 20px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--purple);
    text-align: center;
}

.about {
    background: var(--white);
}

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

.tasks {
    background: var(--light-gray);
}

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

.tasks li {
    padding: 15px 20px;
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 4px solid var(--purple);
}

.requirements {
    background: var(--white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.requirement-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
}

.requirement-box h3 {
    color: var(--purple);
    margin-bottom: 15px;
}

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

.requirement-box li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.requirement-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: bold;
}

.process {
    background: var(--light-gray);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.timeline-content h3 {
    color: var(--purple);
    margin-bottom: 5px;
}

.faq {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--light-gray);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #eee;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--purple);
}

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

.faq-answer {
    display: none;
    padding: 20px;
    background: var(--white);
}

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

.cta-bottom {
    background: var(--purple);
    text-align: center;
    color: var(--white);
}

.cta-bottom h2 {
    color: var(--white);
}

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

footer {
    background: var(--black);
    color: var(--white);
    padding: 30px 20px;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--yellow);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    color: var(--white);
    padding: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    flex: 1;
    min-width: 200px;
}

.cookie-banner button {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 10px 25px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
}

.cookie-banner button:hover {
    opacity: 0.9;
}

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

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

    .benefits li {
        text-align: left;
    }

    .hero-image {
        order: -1;
    }

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

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

    .footer-links a {
        margin: 0 10px;
    }

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