/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.6;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.featured-image {
    width: 100%;
    text-align: center;
}

.featured-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.image-caption {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-content {
    font-size: 16px;
    line-height: 1.8;
}

.paragraph {
    margin-bottom: 30px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #eee;
    margin-top: 80px;
}

footer p {
    font-size: 13px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 750px) {
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .content-section h2 {
        font-size: 22px;
    }

    header {
        padding: 15px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Link Styles */
a {
    color: #333;
}

a:hover {
    opacity: 0.7;
}
