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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a1929;
}

section {
    scroll-margin-top: 100px;
}

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

/* Header */
.header {
    background-color: #0a1929;
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-link:hover {
    opacity: 0.8;
}

.btn-contact {
    background-color: #4a9eff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #3a8eef;
}

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 60px 20px;
}

.hero-content {
    max-width: 700px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px;
    border-radius: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #4a9eff;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 32px;
    font-weight: 600;
    color: #4a9eff;
    margin-top: 40px;
    margin-bottom: 0;
}

.hero-description {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.8;
}

.statistics-inline {
    display: flex;
    gap: 80px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary {
    display: inline-block;
    background-color: #4a9eff;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #3a8eef;
}

/* Statistics Section */
.statistics {
    background-color: #0a1929;
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.statistics-content {
    display: flex;
    gap: 80px;
    justify-content: flex-start;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #ffffff;
}

/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 100px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: #1a1a1a;
}

.about-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-paragraph {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-signature {
    font-size: 16px;
    color: #333333;
    margin-top: 20px;
    font-style: italic;
}

.features-list {
    list-style: none;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
}

.feature-item svg {
    flex-shrink: 0;
}

.about-image {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px;
}

.about-person-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-person-image a {
    text-decoration: none;
    display: block;
    transition: opacity 0.3s;
}

.about-person-image a:hover {
    opacity: 0.8;
}

.person-image {
    width: 300px;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 24px;
    display: block;
    cursor: pointer;
}

.person-name {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: #0a1929;
    padding: 100px 0 80px;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 42px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 60px;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.contact-card {
    text-align: left;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: #2a3441;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.contact-icon svg {
    color: #ffffff;
}

.contact-label {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: #ffffff;
}

.contact-value a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-value a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #0a1929;
    padding: 60px 0 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.footer-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 24px;
    line-height: 1.6;
}

.copyright {
    font-size: 12px;
    color: #b0b0b0;
}

.y-tunnus {
    font-size: 12px;
    color: #b0b0b0;
    margin-top: 8px;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Privacy Section */
.privacy-section {
    background-color: #ffffff;
    padding: 160px 0 100px;
    min-height: calc(100vh - 80px);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 42px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 40px;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.privacy-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn-contact {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .statistics-inline {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
        padding-top: 40px;
    }

    .statistics-content {
        flex-direction: column;
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}

