body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f8f9fc;
    color: #111;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}
.nav {
    display: flex;
    gap: 20px;
}
.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #333;
}
.nav-link.active {
    color: #059669;
}

/* Hero */
.hero {
    background: url("img/slideshow3.jpg") center/cover;
   
    height: 50vh; /* shorter than before */
    min-height: 400px; /* ensures it doesn't get too small on mobile */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;


}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}
.hero .container {
    position: relative;
    z-index: 2;
    color: white;
}
.hero-title {
    font-size: 42px;
    margin-bottom: 5px;
    font-weight: 700;
}
.hero-sub {
    font-size: 18px;
    opacity: 0.9;
}

/* Form Section */
.form-section {
    padding: 60px 0;
}
.form-container {
    background: white;
    padding: 40px;
    max-width: 900px;
    margin: auto;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 5px;
}
.form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    color: #555;
}

.form-grid {
    display: flex;
    gap: 30px;
}
.form-column {
    flex: 1;
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}
.form-group label {
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #059669;
    outline: none;
    box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}

.full {
    width: 100%;
    margin-top: 20px;
}

.submit-container {
    text-align: center;
    margin-top: 25px;
}
.btn-submit {
    padding: 14px 35px;
    border: none;
    background: #059669;
    color: white;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-submit:hover {
    background: #047857;
}
