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

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    background-color: #DCEBE9;
    color: #0C3034;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin: 0 15px;
}

.nav a {
    color: #0C3034;
    text-decoration: none;
}

.hero {
    background: url('../../images/hero_background.png') no-repeat center 40%/cover;
    color: white;
    text-align: center;
    padding: 50px 20px;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
    z-index: 2;
}

.hero p {
    font-size: 1.4rem;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.cta-button {
    background-color: #299CA4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #247f84;
    transform: scale(1.05);
}

.cta-button.secondary {
    background-color: #4B9E6E;
}

.cta-button.secondary:hover {
    background-color: #3c845a;
    transform: scale(1.05);
}

.about {
    padding: 60px 20px;
    background-color: #cde6e5;
    color: #0A4B55;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #299CA4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: #247f84;
}

.features {
    padding: 60px 20px;
    background-color: #b4d7d5;
    text-align: center;
    color: #0A4B55;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background-color: #e2f0f0;
    color: #1e2b2c;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.footer {
    background-color: #0A6572;
    color: white;
    text-align: center;
    padding: 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer .column {
    flex: 1;
    min-width: 700px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer .column p {
    font-size: 1rem;
    margin: 0;
}

.footer-bottom {
    font-size: 0.9rem;
    margin-top: 25px;
}

.about-us {
    padding: 0px 20px;
    color: #1e2b2c;
    text-align: left;
}

.about-us h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0A6572;
    text-align: center;
}

.about-us p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto;
}

.page-logo {
    text-align: center;
    padding-top: 40px;
}

.page-logo img {
    height: 250px;
    width: auto;
}

.cta-button {
    display: inline-block;
    background-color: #299CA4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    font-family: inherit;
}