/* Layout container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Typography */
.subheadline {
    font-family: 'Whyte Medium', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    color: #DA291C;
    margin-bottom: 10px;
    text-align: center;
}

.headline {
    font-family: 'Whyte Book', sans-serif;
    font-size: 48px;
    margin-bottom: 30px;
    color: #0F3E50;
    text-align: center;
}

/* Question text */
.question {
    font-family: 'Whyte Book', sans-serif;
    font-size: 18px;
    color: #2B5564;
    text-align: center;
    margin-bottom: 15px;
}

/* Input group wrapper */
.input-group {
    font-family: 'Whyte Book', sans-serif;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
}

/* Input field styles */
.input-field,
.contact-form input,
.contact-form textarea {
    font-family: 'Whyte Book', sans-serif;
    width: 100%;
    height: 48px;
    padding: 12px 15px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.4;
    box-sizing: border-box;
    text-align: left;
}

/* Make textarea taller and allow typing */
.contact-form textarea {
    height: 100px;
    resize: vertical;
}

/* Contact Header */
.contact-title {
    font-family: 'Whyte Book', sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #0F3E50;
    margin-bottom: 20px;
    text-align: left;
}

/* Button group */
.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

/* Primary button */
.primary-button {
    font-family: 'Whyte Book', sans-serif;
    background-color: #0F3E50;
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    min-width: 120px;
    height: 44px;
    text-align: center;
}

.primary-button:hover {
    background-color: #2B5564;
}

/* Result styling */
.result {
    font-family: 'Whyte Book', sans-serif;
    text-align: center;
    margin-top: 30px;
}

.savings-title {
    font-family: 'Whyte Book', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #ED7C60;
    margin-bottom: 0.3em;
}

.savings-amount {
    font-size: 2em;
    color: #0F3E50;
    margin-bottom: 0.3em;
}

.savings-note {
    font-style: italic;
    color: #0F3E50;
    font-size: 2em;
}

.thank-you-message {
    font-family: 'Whyte Book', sans-serif;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-message h2 {
    font-size: 24px;
    color: #0F3E50;
    margin-bottom: 10px;
}

.thank-you-message p {
    font-size: 16px;
    color: #555;
}