body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #00509e;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 28px;
}

nav {
    background-color: #00376b;
    color: white;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.container h2 {
    color: #00509e;
    margin-bottom: 15px;
}

.container p {
    line-height: 1.6;
}

.services ul {
    padding-left: 20px;
}

.services li {
    list-style: square;
    margin: 5px 0;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.cta {
    text-align: center;
    margin-top: 20px;
}

.cta a {
    padding: 10px 20px;
    color: white;
    background-color: #00509e;
    text-decoration: none;
    border-radius: 5px;
}

.cta a:hover {
    background-color: #00376b;
}

footer {
    background-color: #00376b;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Section headings */
#about h2, #about h3, #about h4 {
    color: #445;
    margin-top: 20px;
    border-bottom: 2px solid #6ba7d3;
    padding-bottom: 5px;
}
/* Paragraph styling */
#about p {
    margin-bottom: 15px;
    text-align: justify;
}

/* List styling */
#about ul {
    margin-left: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

#about ul li {
    margin-bottom: 10px;
}

/* Styling for navigation buttons */
.button-nav button {
    background-color: #6ba7d3; /* Friendly blue color */
    color: white;
    padding: 10px 20px; /* More comfortable padding */
    margin: 5px;
    border: none;
    border-radius: 20px; /* Rounded corners for friendliness */
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

/* Hover effect for buttons */
.button-nav button:hover {
    background-color: #5592bf; /* Slightly darker blue on hover */
    transform: scale(1.05); /* Subtle zoom effect */
}

/* Active state (pressed button) */
.button-nav button:active {
    transform: scale(0.98); /* Button 'depress' effect */
}

/* Icons for buttons */
.home-btn::before {
    content: '🏠 '; /* Icon for Home button */
}

.biography-btn::before {
    content: '📖 '; /* Icon for Biography button */
}

.contact-btn::before {
    content: '✉️ '; /* Icon for Contact button */
}

.location-btn::before {
    content: '📍 '; /* Icon for Location button */
}

/* Styling for the logo */
.logo {
    max-height: 150px; /* Adjust logo size (height) */
    width: auto; /* Maintain the aspect ratio */
    margin-right: 15px; /* Adds space between the logo and the title */
}
