/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f2f2f2;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    margin-left: 20px; /* Adjust margin as needed */
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 40px; /* Adjust spacing between links */
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin from last link */
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

/* Active link style */
.nav-link.active {
    color: #999;
    pointer-events: none;
    cursor: default;
}

section {
    padding: 40px 0;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    color: #666;
}

/* Shaded blocks */
.shaded-block {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

/* Profile photo */
.profile-photo {
    width: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.photo-text {
    margin-bottom: 20px;
}

/* Instagram section */
.instagram-section {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.instagram-feed {
    display: flex;
    justify-content: center;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.links-container {
    margin-top: 20px;
}

.links-container a {
    margin-right: 20px;
}
