
/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #00cc99;
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1, h2, h3 {
    font-weight: 700;
    margin: 20px 0;
}

p {
    line-height: 1.6;
    margin: 15px 0;
}

/* Navigation Bar */
nav {
    background-color: #00b386;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

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

/* Highlight active page link in colour */
nav ul li a.active {
    color: #0066ff;
}

/* Main Section */
main {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #00cc99;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}

/* Style for the Cookie Policy and Privacy Policy links in the footer */
footer p a {
    color: #D3D3D3;
    font-size: 12px;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

/* Contact Form */
.form-group {
    margin-bottom: 15px;
}

label {
    display: inline-block;
    width: 150px;
    text-align: right;
    margin-right: 10px;
}

input, textarea {
    width: calc(100% - 180px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-left: 160px;
    padding: 10px 20px;
    background-color: #990099;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #33cc33;
}

/* Responsive Design */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    label, input, textarea, button {
        width: 100%;
        text-align: left;
        margin-left: 0;
    }

    button {
        margin-top: 10px;
    }
}
