body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 100vh;
    color: white;
    font-family: Arial, sans-serif;
}

.hero-box h1 {
    font-size: 60px;
}

.main-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    color: white;
}

.form-control,
.form-select {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.form-select option {
    background: #1e293b;
    color: white;
}
.form-control:focus,
.form-select:focus {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: #3b82f6;
    box-shadow: none;
}

.btn-primary {
    background: #2563eb;
    border: none;
}

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

.seo-content {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
}

.seo-content p,
.seo-content li {
    color: #ddd;
    line-height: 1.9;
}