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

html, body {
    height: 100%;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background-color: #247B42;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    color: #E5CC3A;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
}

main {
    flex: 1;
    background-color: #ffffff;
    color: #000000;
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.body-text {
    font-size: 1.2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
}

.button-wrapper {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #E5CC3A;
    color: #247B42;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 22px 56px;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #d4bb2e;
}

@keyframes press {
    0% { transform: scale(1); }
    40% { transform: scale(0.96); }
    100% { transform: scale(1); }
}

.cta-button.animate {
    animation: press 0.25s ease;
}
