/* Color Palette */
:root {
    --navy-blue: #1E3A5F;
    --soft-gray: #F2F4F6;
    --teal: #3A7D7E;
    --deep-green: #2F5D50;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--soft-gray);
    color: var(--navy-blue);
}

header {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: var(--teal);
    padding: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

ul {
    padding-left: 20px; /* Adjust the value as needed */
}

.indented {
    padding-left: 20px; /* Adjust the value as needed */
}

section {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    color: var(--deep-green);
    margin-bottom: 15px;
}

h3 {
    color: var(--navy-blue);
    margin-top: 20px;
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--soft-gray);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.logo {
    max-width: 100%;    /* Ensures the image scales down on small screens */
    height: auto;       /* Maintains the aspect ratio */
    width: 250px;       /* Sets a base width for larger screens */
}

.portrait-image {
    width: 100%;           /* Ensures the image scales to fit within its container */
    max-width: 300px;      /* Limits the width for larger screens */
    height: auto;          /* Maintains the aspect ratio */
    display: block;        /* Allows margin auto centering to work */
    margin: 20px auto;     /* Centers the image horizontally and adds vertical spacing */
    border-radius: 8px;    /* Adds slight rounding to the corners for a polished look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Adds a subtle shadow */
}

.family-image {
    width: 100%;           /* Ensures the image scales to fit within its container */
    max-width: 800px;      /* Limits the width for larger screens */
    height: auto;          /* Maintains the aspect ratio */
    display: block;        /* Allows margin auto centering to work */
    margin: 20px auto;     /* Centers the image horizontally and adds vertical spacing */
    border-radius: 8px;    /* Adds slight rounding to the corners for a polished look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Adds a subtle shadow */
}

.service-image {
    width: 100%;           /* Ensures the image scales to fit within its container */
    max-width: 800px;      /* Limits the width for larger screens */
    height: auto;          /* Maintains the aspect ratio */
    border-radius: 8px;    /* Adds rounded corners for a polished look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Adds a subtle shadow for depth */
    margin: 20px auto;     /* Centers the image horizontally and adds vertical spacing */
    display: block;        /* Centers the image within the container */
}

#contactForm {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f2f4f6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contactForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1E3A5F;
}

#contactForm input, 
#contactForm select, 
#contactForm textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#contactForm button {
    width: 100%;
    padding: 10px;
    background-color: #3A7D7E;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

#contactForm button:hover {
    background-color: #2F5D50;
}

#downloads {
    text-align: center;
    padding: 20px;
    background-color: #f2f4f6;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.download-link {
    padding: 10px 20px;
    background-color: #3A7D7E;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-link:hover {
    background-color: #2F5D50;
}

/* Base navigation styles */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-right: 20px;
    color: #1E3A5F; /* Darker navy blue color for better contrast */
}

@media (max-width: 768px) {
    .menu-icon {
        display: block; /* Show menu icon */
    }
    .nav-links {
        display: none; /* Hide navigation links initially */
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 0;
        background-color: #f2f4f6;
        width: 100%;
        text-align: center;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .nav-links.nav-active {
        display: flex; /* Show menu on toggle */
    }
    .nav-links li a {
        color: #1E3A5F; /* Darker navy blue for better visibility */
        text-decoration: none;
        font-weight: bold;
        padding: 10px 0;
        display: block;
    }
    .nav-links li a:hover {
        color: #2F5D50; /* Optional: Deep green on hover for visual feedback */
    }
}


footer {
    text-align: center;
    padding: 10px;
    background-color: var(--navy-blue);
    color: var(--white);
}
