body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0f1113;
    color: #e0e0e0;
}

header.hero {
    text-align: center;
    padding: 80px 20px;
    background: url('assets/stock/background.jpg') center/cover no-repeat;
    color: white;
}

.logo {
    width: 140px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    margin: 5px 0;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #2ecc71;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

nav {
    background-color: #1a1c1f;
    padding: 12px;
    text-align: center;
}

nav a {
    color: #e0e0e0;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a.active {
    color: #2ecc71;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 20px;
}

.image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.page-header {
    text-align: center;
    padding: 40px 20px;
    background-color: #1a1c1f;
}

.content {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 12px;
    padding: 10px;
    background-color: #1a1c1f;
    border: 1px solid #333;
    color: white;
}

button {
    padding: 12px;
    background-color: #2ecc71;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1c1f;
    margin-top: 40px;
}

/* Logo inside navigation */
.nav-logo img {
    width: 120px;
    vertical-align: middle;
    margin-right: 20px;
}

/* Align nav items horizontally */
nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

/* Background theme update */
body {
    background-color: #0d0f10; /* darker charcoal */
    color: #e6e6e6; /* lighter grey text */
}

/* Green accent from logo */
nav a.active,
.cta-button,
button {
    background-color: #2ecc71;
    color: black;
}

/* Headings updated to match logo theme */
h1, h2, h3 {
    color: #2ecc71;
}

