/* General page styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #c3c8c9;
    color: #333;
}

/* Header styles */
header {
    background: #FFA500;
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Space between the title and image */
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header img {
    height: calc(2 * 2rem); /* Dynamically set image height to double the text height */
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: center;
    background: #FF6600;
    padding: 0.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* Main container styles */
.container {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 1rem;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Newsletter and section styles */
.newsletter h2,
section h2 {
    color: #0b769f;
}

.article h3 {
    color: #FF6600;
}

.dimmed {
    opacity: 0.7;
}

/* Form styles */
.subscribe-form input[type="email"] {
    padding: 0.5rem;
    font-size: 1rem;
    width: calc(100% - 10rem);
    margin-right: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.subscribe-form button {
    background: #0b769f;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: #FFA500;
}

/* Footer styles */
footer {
    text-align: center;
    padding: 1rem;
    background: #0b769f;
    color: white;
    margin-top: 2rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
        margin-bottom: 1rem;
    }

    .subscribe-form button {
        width: 100%;
    }
}

.intro-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
