:root {
    --primary-color: #ffb538;
    /* Yellow/Orange from logo */
    --secondary-color: #ed1c24;
    /* Red from logo */
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.45;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background-color: var(--white);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative top border */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

header {
    margin-bottom: 30px;
}

.logo {
    max-width: 450px;
    height: auto;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.highlight {
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-box {
    background-color: #fff8f0;
    /* Light tint of primary color */
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.promo-box h2 {
    color: var(--secondary-color);
    font-size: 2.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.promo-box p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 181, 56, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.checkbox-group input {
    margin-top: 5px;
}

.cta-button {
    background: linear-gradient(45deg, var(--secondary-color), #d91b22);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 28, 36, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

.disclaimer {
    font-size: 0.75rem;
    color: #888;
    margin-top: 20px;
}

.hidden {
    display: none;
}

#success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .promo-box h2 {
        font-size: 1.2rem;
    }
}