* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

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

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.logo {
    margin: 0;
    line-height: 1.2;
}

.logo-main {
    display: block;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.logo-sub {
    display: block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    color: #e5e7eb;
    text-transform: uppercase;
}

header {
    background: #0f172a; /* same as footer */
    padding: 20px 0;
}

header h1 {
    color: #ffffff;
    margin-bottom: 10px;
}

nav a {
    color: #ffffff;
    margin-right: 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    Colour: #ffffff;
    background-color: #0f172a; /* fills the sides */
    background-image:
        linear-gradient(
            rgba(15, 23, 42, 0.65),
            rgba(15, 23, 42, 0.65)
        ),
        url("hero.jpg");

    background-repeat: no-repeat;
    background-size: 85%;
    background-position: center;

    color: #ffffff;
    padding: 120px 0;
    text-align: center;
}
.hero h2 {
    Color:#ffffff;
    margin-bottom: 15px;
    font-size: 36px;
}

.hero p {
    Color: #e5e7eb;
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
}

section {
    padding: 60px 0;
}

section h2 {
    margin-bottom: 25px;
    color: #0f172a;
}

.service {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #0f172a;
}

.alt {
    background: #0f172a;
    Color: #ffffff;
}

.alt h2 { 
    Color: #ffffff;
}

.alt p { 
    Color: #e5e7eb;
}

footer {
    background: #0f172a;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    header h1 {
        text-align: center;
    }

    nav {
        text-align: center;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }
}

.contact-form {
    margin-top: 30px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #1e293b;
}
