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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F5F5F4;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    padding: 20px 10px;
}

.hero {
    width: 100%;
    max-width: 1400px;
}

.hero-content {
    background: white;
    border-radius: 30px;
    padding: 60px 30px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('world-map.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 90%;
    opacity: 0.2;
    border-radius: 30px;
    pointer-events: none;
    z-index: 0;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    color: #25832B;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

h1 .highlight {
    color: #25832B;
}

.subheading {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 45px 0;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit svg {
    color: #25832B;
    flex-shrink: 0;
}

.benefit span {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25832B;
    color: white;
    padding: 18px 45px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px auto 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 131, 43, 0.3);
}

.cta-button:hover {
    background: #1d6722;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 131, 43, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.languages-container {
    margin-top: 40px;
    overflow: hidden;
    padding: 25px 0;
}

.languages-scroll {
    display: flex;
    gap: 20px;
    animation: scroll 60s linear infinite;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.country-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.country-tag .fi {
    font-size: 1.2rem;
    border-radius: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .hero-content {
        padding: 40px 30px 35px;
        border-radius: 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subheading {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .benefits {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        gap: 10px;
    }

    .benefit svg {
        width: 28px;
        height: 28px;
    }

    .benefit span {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 16px 35px;
    }

    .language-tag {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 35px 25px 30px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .subheading {
        font-size: 0.95rem;
    }

    .benefits {
        gap: 20px;
    }

    .benefit svg {
        width: 26px;
        height: 26px;
    }

    .benefit span {
        font-size: 0.95rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 30px;
        width: 100%;
    }

    .language-tag {
        font-size: 0.95rem;
    }
}

/* Footer Styles */
.footer {
    background: transparent;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-content a {
    color: #25832B;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.2s ease;
}

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

/* Language Selector */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.language-selector select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.2s ease;
}

.language-selector select:hover {
    border-color: #25832B;
}

.language-selector select:focus {
    outline: none;
    border-color: #25832B;
}
