body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f0e68c, #f0c68c);
    margin: 0;
}

.navbar {
    background-color: #343a40; /* Dark background */
    color: white;
    padding: 10px 20px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 10px; /* Add padding for better spacing */
    background-color: #343a40; /* Match the navbar background */
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: white; /* White text */
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff; /* Change color on hover */
}

.main-container {
    display: flex;
    padding: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px; /* Adjust as needed */
    margin-right: 20px; /* Space between grid and login form */
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 400px; /* Adjust width */
}

.logo img {
    width: 100px; /* Adjust as needed */
}

.login-form {
    margin-top: 20px;
}

h2 {
    margin-bottom: 20px;
}

input {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 90%; /* Adjust width */
    border: 1px solid #ccc;
    border-radius: 5px;
}

.button-container {
    display: flex;
    justify-content: space-between;
}

.login-button, .contact-button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 48%; /* Adjust button width */
}

.login-button {
    background-color: #007bff; /* Blue */
    color: white;
}

.contact-button {
    background-color: #dc3545; /* Red */
    color: white;
}

.service-box {
    background: #f0f0f0; /* Light background */
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

.service-icon {
    font-size: 40px; /* Adjust icon size */
    margin-bottom: 10px;
}

.dashboard-container {
    display: flex;
}

.sidebar {
    width: 200px;
    background-color: #343a40; /* Dark background */
    color: white;
    padding: 20px;
    height: 100vh; /* Full height */
}

.sidebar h2 {
    margin: 0;
    color: #ffffff; /* White text */
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar li {
    margin: 15px 0;
}

.sidebar a {
    text-decoration: none;
    color: #ffffff; /* White text */
    transition: color 0.3s;
}

.sidebar a:hover {
    color: #007bff; /* Change color on hover */
}

.content {
    flex-grow: 1;
    padding: 20px;
    background-color: #f8f9fa; /* Light background for content */
}

.header-bar {
    background-color: #f8f9fa; /* Light background */
    padding: 10px 20px;
    border-bottom: 1px solid #ccc; /* Bottom border */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logout-button {
    background-color: #dc3545; /* Red */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.logout-button:hover {
    background-color: #c82333; /* Darker red on hover */
}

.footer {
    background-color: #343a40; /* Dark background */
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px; /* Center the footer content */
    margin: 0 auto;
}

.footer-links {
    list-style-type: none;
    padding: 0;
}

.footer-links li {
    display: inline;
    margin: 0 15px;
}

.footer-links a {
    color: white; /* White text */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #007bff; /* Change color on hover */
}

.project-details {
    background-color: #f8f9fa; /* Light background */
    padding: 20px;
    margin: 20px 0; /* Space above and below */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.project-container {
    max-width: 800px; /* Center the content */
    margin: 0 auto;
}

.project-container h2 {
    margin-bottom: 15px;
}

.project-container p {
    margin-bottom: 10px;
}

.climate-acts {
    padding: 20px;
    text-align: center;
}

.climate-acts h2 {
    margin-bottom: 20px;
}

.climate-image {
    margin: 20px 0; /* Space between images */
}

.full-width-image {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: shadow effect */
}
