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

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #002851;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

nav li {
    display: inline;
}

.nav-link {
    text-decoration: none;
    color: #fdd835;
    font-size: 1.2em;
    padding: 10px;
}

.nav-link.active {
    color: #fff;
    font-weight: bold;
}

.nav-link:hover {
    color: #fff;
}

main {
    padding: 20px;
    width: 80%;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.forecast-section {
    text-align: center;
}

.forecast-section h2 {
    font-size: 1.8em;
    color: #002851;
    margin-bottom: 20px;
}

.forecast-details {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.forecast-details > div {
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.forecast-details h3 {
    font-size: 1.4em;
    color: #00395b;
    margin-bottom: 15px;
}

.forecast-details p {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.5;
}

footer {
    text-align: center;
    background-color: #002851;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    font-size: 1.1em;
}
