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;
}

/* =========================================================
   HOW IT WORKS PAGE
   ========================================================= */

.how-it-works {
    color: #1e2b2c;
}


/* Intro */

.how-intro {
    padding: 70px 20px 35px;
    text-align: center;
}

.how-intro h1 {
    color: #0A6572;
    font-size: 2.8rem;
    margin: 0 0 20px;
}

.how-lead {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}


/* Video */

.how-video {
    padding: 20px 20px 60px;
}

.video-placeholder {
    max-width: 900px;
    min-height: 450px;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #0A6572;
    color: white;

    border-radius: 10px;
    text-align: center;
}

.video-placeholder h2 {
    margin-top: 0;
    font-size: 2rem;
}

.video-placeholder p {
    max-width: 600px;
    margin: 0 auto;

    font-size: 1.1rem;
    line-height: 1.6;
}


/* Process */

.how-process {
    padding: 60px 20px;
    background-color: #cde6e5;
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2 {
    color: #0A6572;
    font-size: 2.3rem;
    margin: 0 0 15px;
}

.section-heading p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.process-item {
    padding: 30px;

    background-color: #e2f0f0;

    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.process-number {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #299CA4;
    color: white;

    border-radius: 50%;

    font-size: 1.2rem;
    font-weight: bold;
}

.process-item h3 {
    margin: 0 0 12px;

    color: #0A6572;

    font-size: 1.4rem;
}

.process-item p {
    margin: 0;
    line-height: 1.7;
}


/* Final CTA */

.how-cta {
    padding: 65px 20px;
    text-align: center;
}

.how-cta h2 {
    margin: 0 0 15px;

    color: #0A6572;

    font-size: 2.2rem;
}

.how-cta p {
    margin: 0 auto 25px;
    font-size: 1.1rem;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    color: #1e2b2c;
}

.contact-section {
    padding: 70px 20px 90px;
}

.contact-intro {
    max-width: 750px;
    margin: 0 auto 45px;

    text-align: center;
}

.contact-intro h1 {
    margin: 0 0 20px;

    color: #0A6572;

    font-size: 2.8rem;
}

.contact-intro p {
    margin: 0;

    font-size: 1.2rem;
    line-height: 1.8;
}


/* Contact information */

.contact-card {
    max-width: 700px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    background-color: #e2f0f0;

    border-radius: 8px;

    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.08);

    overflow: hidden;
}

.contact-item {
    padding: 35px;
    text-align: center;
}

.contact-item + .contact-item {
    border-left: 1px solid #c4dddd;
}

.contact-item h2 {
    margin: 0 0 12px;

    color: #0A6572;

    font-size: 1.3rem;
}

.contact-item a {
    color: #1e2b2c;

    font-size: 1.1rem;
    text-decoration: none;
}

.contact-item a:hover {
    color: #299CA4;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 750px) {

    .how-intro h1,
    .contact-intro h1 {
        font-size: 2.2rem;
    }

    .video-placeholder {
        min-height: 280px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-item + .contact-item {
        border-left: none;
        border-top: 1px solid #c4dddd;
    }
}