* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo .tv-badge {
    height: 30px;
    margin-left: 10px;
}

.cta-button {
    background-color: #22a7d4;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #1a8cb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://images.unsplash.com/photo-1583267746897-2cf415887172?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.hero-content {
    /* display: flex; */
    justify-content: space-between;
    align-items: flex-start;
}

.hero-text {
    color: white;
    max-width: 500px;
    /* padding-right: 20px; */
    margin: 80px;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
    /* text-align: justify !important; */
}

/* .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
} */
.hero-text h1 {
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center !important;
}

.hero-text h2 {
    font-size: 27px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* .reviews {
    color: #ffcc00;
    font-size: 18px;
    margin: 20px 0;
} */
.reviews {
    color: #ffeb3b;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* .no-fee {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    transition: transform 0.3s ease;
} */

.no-fee {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    margin-top: 20px;
}

.no-fee:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.no-fee h3 {
    color: #ff0000;
    font-size: 24px;
    text-align: center;
    margin-bottom: 15px;
}

.no-fee p {
    color: #666;
    text-align: center;
    line-height: 1.5;
}

.form-container {
    background-color: rgba(230, 230, 230, 0.9);
    border-radius: 5px;
    padding: 25px;
    width: 550px;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

.form-subtitle {
    text-align: center;
    color: #22a7d4;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #22a7d4;
    box-shadow: 0 0 0 3px rgba(34, 167, 212, 0.2);
    outline: none;
}

.form-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-select:focus {
    border-color: #22a7d4;
    box-shadow: 0 0 0 3px rgba(34, 167, 212, 0.2);
    outline: none;
}

.question-container {
    background-color: rgba(200, 200, 200, 0.5);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.question-container:hover {
    background-color: rgba(200, 200, 200, 0.7);
}

.question-text {
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-option {
    padding: 8px 30px;
    background-color: white;
    border: 1px solid #22a7d4;
    border-radius: 3px;
    color: #22a7d4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-option:hover {
    background-color: #f0f9fc;
    transform: translateY(-2px);
}

.btn-option.active {
    background-color: #22a7d4;
    color: white;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin: 15px 0;
    font-size: 12px;
    color: #666;
}

.checkbox-container input {
    margin-right: 10px;
    margin-top: 3px;
}

.consent-text {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.submit-btn {
    background-color: #22a7d4;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 12px 30px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a8cb3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 30px;
}

footer a {
    color: #22a7d4;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #1a8cb3;
    text-decoration: underline;
}

footer p {
    margin: 10px 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.animated-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animated-element.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .form-container {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .form-container {
        width: 100%;
        padding: 15px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-select {
        width: 100%;
    }
}