html {
    scroll-behavior: smooth;
}

#home-hero {
    height: 75vh;
}

.icon-large {
    font-size: 2em;
}

h1 {
    font-size: 2.7em;
    font-weight: bold;
}

h2 {
    font-size: 2em;
}

p {
    font-size: 1.3em;
    line-height: 1.6em;
    color: #3d3e3e;
}

ul {
    font-size: 1.3em;
    line-height: 1.6em;
    color: #3d3e3e;
}

.btn-success {
    background-color: #3355AA;
    color: #fff;
    border: 1px solid #3355AA;
}

.btn-success:hover, .btn-success:active {
    background-color: #2a4d8c;
    color: #fff;
    border: 1px solid #3355AA;
}

.btn-outline-success {
    background-color: transparent;
    color: #3355AA;
    border: 1px solid #3355AA;
}

.btn-outline-success:hover, .btn-outline-success:active {
    background-color: #3355AA;
    color: #fff;
    border: 1px solid #3355AA;
}

.btn {
    border-radius: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.vm-bg-green {
    background-color: #3355AA;
}

.text-vm-green {
    color: #3355AA;
}

.btn-secondary {
    background-color: #fff;
    color: #3355AA;
    border: 1px solid #3355AA;
}

.btn-secondary:hover {
    background-color: #e3e3e3;
    color: #3355AA;
    border: 1px solid #3355AA;
}

.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    background: #fff;
}

.card-img-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 2rem;
}

.card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3c2f; /* tummahko vihreä */
}

.card p {
    font-size: 1rem;
    color: #555;
    margin-top: 0.75rem;
}

@media (max-width: 768px) {

    #home-hero {
        height: 100vh;
    }

    #home-hero h1 {
        font-size: 1.8rem;
    }

    #home-hero h2 {
        font-size: 1.3rem;
    }

    #home-hero .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


