body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #f7f9fb;
}

header.banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

header.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(85%);
}

header.banner .overlay {
    position: absolute;
    bottom: 20px;
    left: 40px;
    color: #eaeaea;
}

main.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.profile {
    text-align: center;
}

/* New Profile Section Layout */
.profile-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.profile-left {
    flex: 0 0 300px;
    text-align: center;
}

.profile-right {
    flex: 1;
    padding-top: 1rem;
}

.profile-title {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #697d8b;
    margin-bottom: 15px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .profile-left {
        flex: none;
    }

    .profile-right {
        padding-top: 0;
    }
}

footer {
    text-align: center;
    margin: 40px 0;
    color: #666;
}

/* Navigation Styles */
nav.navigation {
    background-color: ;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav.navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

nav.navigation li {
    margin: 0;
}

nav.navigation a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s ease;
}

nav.navigation a:hover,
nav.navigation a.active {
    background-color: #34495e;
}

/* Blog Post Styles */
.post-preview,
.recent-post {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e1e8ed;
}

.post-preview:last-child,
.recent-post:last-child {
    border-bottom: none;
}

.post-preview h2,
.recent-post h3 {
    margin-bottom: 0.5rem;
}

.post-preview h2 a,
.recent-post h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.post-preview h2 a:hover,
.recent-post h3 a:hover {
    color: #3498db;
}

.post-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more,
.view-all-posts {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover,
.view-all-posts:hover {
    text-decoration: underline;
}

/* Individual Post Styles */
.post-header {
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 1px solid #e1e8ed;
    padding-bottom: 1rem;
}

.post-title {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.post-content {
    line-height: 1.7;
    margin-bottom: 3rem;
}

.post-content h1,
.post-content h2,
.post-content h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-footer {
    border-top: 1px solid #e1e8ed;
    padding-top: 2rem;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.post-navigation a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.post-navigation a:hover {
    text-decoration: underline;
}