/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    height: 70px;
    padding: 0 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.nav-left, .nav-center, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-center a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-center a:hover {
    color: #27ae60;
}

.logo {
    height: 50px;
    width: auto;
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
}

.menu-label {
    cursor: pointer;
    color: #333;
    font-weight: 500;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 140px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 20;
    border-radius: 4px;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
}


.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Call to Action Button */
.cta-button {
    background-color: #27ae60;
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #219150;
}
