/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    color: #1e40af;
    margin: 0;
}

.logo p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #1e40af;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    color: #1e40af;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin: 20px 0;
}

.btn-primary {
    display: inline-block;
    background-color: #1e40af;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #1e3a8a;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1e40af;
    padding: 10px 25px;
    border: 2px solid #1e40af;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-secondary:hover {
    background-color: #1e40af;
    color: white;
}

/* Features section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 40px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #1e40af;
}

.checkbox-group {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    user-select: none;
}

.thank-you-message {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    color: #10b981;
    font-weight: 500;
    display: none;
}

.benefits {
    padding: 60px 0;
    background-color: #f9fafb;
}

.benefits h2 {
    text-align: center;
    font-size: 28px;
    color: #1e40af;
    margin-bottom: 40px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.benefit-card h3 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 20px;
}

.benefit-card p {
    color: #4b5563;
    line-height: 1.7;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .features {
        padding: 50px 0;
    }
}