/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #AFDDE5;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Top Section for Logo and Contact Info */
.top-section {
    background-color: #024950;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.contact-info {
    font-size: 14px;
}

/* Navbar with Dropdown */
.navbar {
    background-color: #0FA4AF;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu li {
    position: relative;
    margin-right: 20px;
    padding: 10px;
    color: white;
}

.menu li a {
    color: white;
    text-decoration: none;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #024950;
    list-style-type: none;
    padding: 0;
}

.menu li:hover .submenu {
    display: block;
}

.submenu li {
    padding: 10px;
}

.submenu li a {
    color: white;
}

/* Social Media Icons */
.social-icons a {
    margin-left: 10px;
    color: white;
    text-decoration: none;
}

/* Search Bar */
.search-bar {
    background-color: #0FA4AF;
    padding: 15px;
    text-align: center;
}

.search-bar input {
    padding: 10px;
    width: 50%;
    border: none;
    border-radius: 4px;
}

.search-bar button {
    padding: 10px 20px;
    background-color: #024950;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: #AFDDE5;
}

.quick-links a {
    margin: 0 10px;
    color: #0FA4AF;
    text-decoration: none;
}

/* Content Section */
.content-section {
    padding: 30px;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.content-section h2 {
    color: #024950;
}

.content-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Footer */
.footer {
    background-color: #003135;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer-column {
    width: 12.5%;
}

.footer-left, .footer-right {
    width: 25%;
}

.footer-column p {
    margin: 5px 0;
}

/* Copyright Section */
.copyright-section {
    background-color: #024950;
    color: white;
    text-align: center;
    padding: 10px;
}
