/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: 200px;
    object-fit: contain;
    /* filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);*/
    transition: all 0.3s ease;
}

.logo-image:hover {
    /* filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);*/
    transform: scale(1.05);
}

/* Fallback for logo placeholders (if images don't load) */
.logo-placeholder {
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #666;
    border: 2px dashed #ddd;
    text-align: center;
    min-width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: white;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input {
    padding: 16px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus {
    outline: none;
    border-color: #0070f3;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}

.submit-btn {
    background: #0070f3;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.submit-btn:hover {
    background: #0051cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 243, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.thank-you-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-primary {
    background: #0070f3;
    color: white;
}

.btn-primary:hover {
    background: #0051cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 243, 0.3);
}

.btn-secondary {
    background: #25d366;
    color: white;
}

.btn-secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-section.show {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .logo-image {
        height: 50px;
        width: 50px;
    }
    
    .logo-placeholder {
        min-width: 100px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .form-section {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .thank-you-content h2 {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 40px;
        width: 40px;
    }
    
    .logo-placeholder {
        height: 40px;
        min-width: 80px;
    }
}

/* Loading State */
.submit-btn.loading {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
} 