/* General styling for new content pages */
@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

body {
    background-color: #f5f5f5;
    color: #121212;
    font-family: "Host Grotesk", sans-serif;
    padding-top: 80px; /* Prevent content from hiding behind the fixed header */
    padding-bottom: 60px; /* Prevent content from hiding behind the fixed footer */
}

/* Header and Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0 2rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3700b3;
    text-decoration: none;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #6200ea;
}

/* Main Content Container */
.content-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-height: 60vh;
}

.content-container h1 {
    font-size: 2.5rem;
    color: #3700b3;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.content-container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 30px;
}

.content-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-container a {
    color: #6200ea;
    text-decoration: none;
    font-weight: 600;
}

.content-container a:hover {
    text-decoration: underline;
}

/* Footer is already styled in your main styles.css, but this ensures it's not hidden */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}