:root {
    --primary: #2563eb;
    --dark: #1e293b;
    --light: #f8fafc;
    --accent: #10b981;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

header {
    padding: 20px 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark);
}

.logo span { color: var(--primary); }

.btn-nav {
    text-decoration: none;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 120px 10%;
    background: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight { color: var(--primary); }

.btn-main {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-main:hover {
    transform: scale(1.05);
}

.contact-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.form-container h2 {
    margin-bottom: 25px;
    text-align: center;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

#form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 50px;
    font-size: 0.9rem;
    color: #64748b;
}