body {
    font-family: 'Froge Sans', sans-serif;
    background-color: #f0fff0;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #228B22;
    font-weight: bold;
    margin-bottom: 16px;
}

p {
    line-height: 1.6;
    color: #2f4f4f;
    margin-bottom: 16px;
}

a {
    color: #556b2f;
    text-decoration: none;
    border-bottom: 2px dashed #8fbc8f;
}

a:hover {
    color: #2e8b57;
    border-bottom: 2px solid #2e8b57;
}

.button {
    display: inline-block;
    background-color: #32cd32;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #3cb371;
}

.froge-footer {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    border-top: 3px solid #8fbc8f;
}

.froge-footer a {
    margin: 0 10px;
    color: #556b2f;
}

.froge-hero {
    background: url('/assets/froge-hero.svg');
    background-size: cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

@media (max-width: 600px) {
    .button {
        width: 100%;
        box-sizing: border-box;
    }

    .froge-hero {
        padding: 60px 10px;
    }
}