/*
    Stylesheet by Sherley Solutions.
    Updated: 10/06/2025
*/
* { box-sizing: border-box; }
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: justify;
}
header {
    background-color: #2c3e50;
    color: white;
    padding: 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
header img {
    width: 80px; /* Adjust size as needed */
    height: auto;
    margin-right: 1rem; /* Space between logo and text */
}
header div {
    display: flex;
    flex-direction: column;
}
header h1 {
    margin: 0;
    font-size: 2.5rem;
}
header p {
    font-size: 1.2rem;
    margin: 0;
    margin-left: 2rem; /* Indent the slogan */
    color: white;
}
nav {
    background-color: #34495e;
    padding: 1rem;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}
nav ul li a:hover {
    text-decoration: underline;
}
.nav-toggle {
    display: none;
    background-color: #1C5882;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
}
section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0px auto 4rem auto;
    flex: 1;
}
h2 {
    color: #2c3e50;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.service {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.service-text {
    flex: 1;
    min-width: 300px;
}
.service h3 {
    color: #1C5882;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.service p {
    font-size: 1rem;
    color: #555;
}
.service a {
    color: #1C5882;
    text-decoration: none;
    font-weight: bold;
}
.service a:hover {
    text-decoration: underline;
}
.service img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.content-text {
    flex: 1;
    min-width: 300px;
}
.content h3 {
    color: #1C5882;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.content h4 {
    color: #1C5882;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.content p {
    font-size: 1rem;
    color: #555;
}
.content a {
    color: #1C5882;
    text-decoration: none;
    font-weight: bold;
}
.content a:hover {
    text-decoration: underline;
}
.content img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.team-member {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.team-member {
    flex: 1;
    min-width: 300px;
}
.team-member h3 {
    color: #1C5882;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.team-member p {
    font-size: 1rem;
    color: #555;
}
.team-member a {
    color: #1C5882;
    text-decoration: none;
    font-weight: bold;
}
.team-member a:hover {
    text-decoration: underline;
}
.team-member img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.team-member {
    margin-bottom: 2rem;
    text-align: justify;
}
.team-member h3 {
    color: #1C5882;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.team-member p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}
.team-member img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.contact-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.card h3 {
    color: #1C5882;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.card p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    text-align: center;
}
.card a {
    color: #1C5882;
    text-decoration: none;
    font-weight: bold;
}
.card a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .card {
        max-width: 100%;
    }
}
footer {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer .footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 1rem;
}
footer .footer-links a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #34495e;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    nav ul.active {
        display: flex;
    }
    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }
    .nav-toggle {
        display: block;
        margin: 0 auto;
    }
    .service {
        flex-direction: column;
        text-align: center;
    }
    .service img {
        order: -1;
        margin: 0 auto;
        display: block;
    }
    .service p {
        text-align: justify;
    }
    .content {
        flex-direction: column;
        text-align: center;
    }
    .content img {
        order: -1;
        margin: 0 auto;
        display: block;
    }
    .content p {
        text-align: justify;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    footer .footer-links {
        margin-bottom: 0.5rem;
    }
}