/* General Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff; /* Change the logo color to white */
    text-decoration: none; /* Remove the underline */
    transition: color 0.3s; /* Smooth color change on hover */
}

.logo:hover {
    color: #f0a500; /* Change color on hover */
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}

/* Top Bar */
.topbar {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
}

.navbar ul li {
    margin: 0 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #f0a500; /* Highlight color */
}

/* Main Section */
main {
    padding: 40px 20px;
}

.contact-section {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #333;
}

.contact-section p {
    font-size: 1.2em;
    color: #666;
}

.contact-section a {
    color: #f0a500;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-section a:hover {
    color: #d49000; /* Darker shade on hover */
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}