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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Content Section */
.content-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #111;
}

.content-section p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #444;
}

.highlight {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
}

.content-section strong {
    font-weight: 700;
    color: #111;
}

.criteria {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #0066cc;
}

.criteria h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.criteria ul {
    list-style: none;
    padding-left: 0;
}

.criteria li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.0625rem;
    color: #333;
}

.criteria li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.compensation-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111;
    margin-top: 30px;
}

/* Form Section */
.form-card {
    background: white;
    border: 2px solid #0066cc;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #0052a3;
}

.submit-btn:active {
    transform: translateY(1px);
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.disclaimer a {
    color: #0066cc;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    gap: 40px;
}

.legal-disclaimer h3,
.legal-ad h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.95;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    font-size: 0.9375rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .header h1 {
        font-size: 1.875rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 40px 0;
    }

    .form-card {
        padding: 25px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .footer {
        padding: 40px 0 25px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}