body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-image: url('background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(26, 61, 109, 0.7);
}

/* Add other CSS styles based on Option 1 */
h2,
a {
    color: #71a9f7;
}

a:hover {
    color: #1a3d6d;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding-left: 20px;
    font-style: normal;
}

section {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
}

a {
    text-decoration: none;
    color: #1a3d6d;
}

/* CSS (styles.css) - Updated */

.nav-links {
    display: flex;
    padding-right: 20px;
    list-style: none;
}

.nav-links li {
    margin-left: 1rem;
    font-weight: bold;
    flex: 0 0 auto;
    /* Add this line */
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px;
    transition: all 0.3s ease;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

i.fab,
i.fas {
    font-size: 24px;
    margin-right: 10px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

#navbar,
#navbar a {
    color: #ffffff;
    font-weight: bold;
}

.profile-picture {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin-top: 20px;
}

.about-me-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.profile-picture-container {
    flex: 0 0 auto;
}

.about-me-text {
    flex: 1;
}

.collapsible-container {
    margin-bottom: 20px;
}

.collapsible-header {
    cursor: pointer;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 0;
        background-color: rgba(26, 61, 109, 0.9);
        flex-direction: column;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        display: none;
    }

    .nav-active {
        display: flex;
        transform: translateY(0%);
        border: 2px solid white;
        top: 12px;
    }


    nav ul li {
        opacity: 0;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    nav ul li a {
        font-size: 18px;
    }

    .nav-active li {
        opacity: 1;
        transition: opacity 0.3s ease 0.3s;
    }

    .burger {
        display: block;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .about-me-content {
        flex-direction: column;
    }
}