/* Reset & Fonts */
body, h1, h2, p, button, input, textarea {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 1px solid #eee;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.1rem;
    color: #666;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 0;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Button */
button {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #333;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    font-size: 1rem;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: #777;
    border-top: 1px solid #eee;
}