body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f9f9ff;
    color: #222;
}

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

header.hero-section {
    background: white;
    padding: 4rem 0;
}

.split {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.btn.primary {
    background: #5a3bff;
    color: white;
}

.btn.secondary {
    background: #e0dffe;
    color: #5a3bff;
}

.hero-img {
    flex: 1;
    text-align: center;
}

.hero-img img {
    width: 100%;
    border-radius: 10px;
}

.features {
    padding: 3rem 0;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex: 1 1 250px;
}

.form-section {
    background: #f4f2ff;
    padding: 3rem 1rem;
}

.form-section h2 {
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, button {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
}

button {
    background: #5a3bff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #4025d0;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #eee;
    margin-top: 3rem;
}