body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #00796B;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.section {
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section img {
    width: 100%;
    height: auto;
    display: block;
}

.section-content {
    padding: 25px;
}

h2 {
    color: #2c3e50;
}

ul {
    margin-top: 10px;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Header styles */
.header {
    background-color: #00796B;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.header .brand-icon {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-bottom: 10px;
    margin-left: 20%;
}

.header .brand-icon img {
    width: 100px;
    height: 100px;
}

/* Navigation styles */
nav {
    background-color: #00796B;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #00695C;
    border-radius: 5px;
}

/* Submenu styles */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #004D40;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.submenu li {
    margin: 0;
}

.submenu li a {
    padding: 10px 20px;
    white-space: nowrap;
}

nav ul li:hover .submenu {
    display: block;
}

footer {
    background-color: #333; /* Match header background */
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    text-decoration: none;
    color: #80CBC4; /* Slightly lighter color for links */
    font-weight: bold;
}

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