* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f6f2;
    color: #1f1f1f;
    line-height: 1.6;
}

header {
    background-color: #ffffff;
    border-bottom: 3px solid #20b2ab;
}

.site-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.site-title h1 {
    color: #00287e;
    font-size: 2rem;
}

.site-title p {
    color: #067898;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

nav a {
    display: block;
    text-decoration: none;
    background-color: #00287e;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
}

nav a:hover,
nav a:focus,
nav a.active {
    background-color: #20b2ab;
    color: #00287e;
}

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 60px 20px;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)),
        url("../Images/hero.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-kicker {
    color: #067898;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero h2 {
    color: #00287e;
    font-size: 3rem;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 650px;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.hero-button {
    display: inline-block;
    background-color: #00287e;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
}

.hero-button:hover,
.hero-button:focus {
    background-color: #20b2ab;
    color: #00287e;
}

.why-choose {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose h2 {
    color: #00287e;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature {
    flex: 1;
    max-width: 350px;
    padding: 25px;
}

.feature-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #8ee8e2;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 40, 126, 0.18);
}

.feature h3 {
    color: #067898;
    margin-bottom: 10px;
}

.feature p {
    color: #444444;
}

footer {
    background-color: #00287e;
    color: #ffffff;
    text-align: center;
    padding: 25px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin: 5px 0;
}

/* Responsive design for tablets and mobile devices */
@media screen and (max-width: 768px) {

    .site-header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav a {
        text-align: center;
    }

    .hero {
        min-height: 420px;
        padding: 35px 20px;
        background-position: center center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 100%;
    }
}