/* General Styles */
body {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    /* margin-top: 60px; */
    padding-top: 100px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #008080;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    box-sizing: border-box;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2em;
}

header nav ul {
    list-style: none;
    padding: 0;
    /* margin: 0px 0 0; */
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Section Styles */
.section {
    padding: 40px 0;
}

.section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #008080;
}

.section p, .section ul {
    font-size: 1.1em;
    line-height: 1.8;
}

.section ul {
    list-style-type: square;
    padding-left: 20px;
}

.section ul li {
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #008080;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p {
        font-size: 1em;
    }

    header nav ul li {
        display: block;
        margin: 10px 0;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .section p, .section ul {
        font-size: 1em;
    }
}

/* Ensure that the 'about-content' section displays the text and image side by side */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Adjust the space between the text and the image */
}

/* Make sure the text doesn't take up too much space */
.about-text {
    flex: 1; /* Let the text take the remaining space */
}

/* Style the image with a 4:3 aspect ratio */
.about-photo img {
    width: 173.25px; /* Set the width as desired */
    height: 231px; /* Set the height to maintain a 4:3 ratio */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    border-radius: 8px; /* Optional: rounded corners for the image */
}