* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b6ef6;
    transition: all 0.4s ease;
}
.slide-out {
    transform: translateX(-20px);
    opacity: 0;
}
.slide-in {
    transform: translateX(0);
    opacity: 1;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
nav a:hover {
    color: #0b6ef6;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0b6ef6, #2a9df4);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}
.cta-btn {
    background: #ffb400;
    color: #333;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
}
.cta-btn:hover {
    background: #ffa000;
}

/* Features */
.features {
    padding: 60px 0;
}
.features h2 {
    text-align: center;
    margin-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.feature {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

/* How It Works */
.how-it-works {
    background: #f1f8ff;
    padding: 60px 0;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.step {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.step span {
    display: inline-block;
    background: #0b6ef6;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Contact */
.contact {
    background: #f1f8ff;
    padding: 60px 0;
}
.contact form {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.contact button {
    width: 100%;
    cursor: pointer;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    nav {
        display: none;
    }
}
