body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #f4f6f8;
    line-height: 1.6;
}

/* Sticky Top CTA */
.top-banner {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0b3d2e;
    color: #fff;
    text-align: center;
    padding: 12px 10px;
    font-weight: bold;
    z-index: 1000;
    font-size: 15px;
}

.top-banner a {
    color: #ffd54f;
    text-decoration: none;
    margin-left: 10px;
}

/* Navigation */
nav {
    margin-top: 48px;
    background: #1f2933;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ffd54f;
}

header {
    padding: 80px 20px 60px;
    text-align: center;
    background: white;
}

header h1 {
    font-size: 2.6em;
    margin-bottom: 10px;
}

section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    color: #0b3d2e;
    margin-bottom: 15px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.cta-section {
    background: #0b3d2e;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section a {
    background: #ffd54f;
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
}

footer {
    background: #111827;
    color: #ccc;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
}

footer a {
    color: #ffd54f;
    text-decoration: none;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
}

input, textarea {
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

button {
    background: #0b3d2e;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #145c43;
}
