body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

.hero-section {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #007BFF;
    margin: 0;
}

.tagline {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #222;
}

.intro {
    font-size: 1em;
    color: #444;
    margin-bottom: 25px;
}

input, textarea {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

button {
    padding: 12px 24px;
    background: #007BFF;
    color: white;
    border: none;
    font-size: 1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #555;
}

.g-recaptcha {
    margin-bottom: 15px;
}
