/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #fff; /* White background for header */
    color: #333;
    padding-top: 20px;
    min-height: 70px;
    border-bottom: 3px solid #005691; /* Dark Blue from logo */
}

header #logo {
    height: 60px;
    float: left;
    margin-top: 5px;
}

header nav {
    float: right;
    margin-top: 25px;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    display: inline;
    padding: 0 15px;
}

header a {
    color: #005691; /* Dark Blue */
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}

header a:hover {
    color: #5cb85c; /* Green from logo */
}

/* Hero Section */
#hero {
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), #005691 url('../images/hero_background.jpeg') no-repeat center center/cover; /* Placeholder, will find image */
    text-align: center;
    color: #ffffff;
    padding: 60px 0;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #5cb85c; /* Green from logo */
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #4cae4c; /* Darker Green */
}

.cta-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 16px;
}

.cta-link:hover {
    color: #f0f0f0;
}

/* Sections */
section {
    padding: 40px 0;
    background-color: #fff;
    margin-bottom: 20px;
}

section:nth-child(even) {
   /* background-color: #f9f9f9; */ /* Alternate background for sections if desired */
}

section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #005691; /* Dark Blue */
}

/* Key Points */
.key-points {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 30px;
}

.key-points .point {
    flex-basis: 23%;
}

.key-points .point h3 {
    font-size: 20px;
    color: #5cb85c; /* Green */
    margin-bottom: 10px;
}

/* Service Cards */
#services-overview h2 {
    margin-bottom: 10px;
}
#services-overview > .container > p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}
.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-card {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    flex-basis: 48%; /* Two cards per row */
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;
}

.service-card h3 {
    color: #005691; /* Dark Blue */
    margin-top: 0;
}

.service-card .cta-link {
    color: #5cb85c; /* Green */
    font-weight: bold;
}

/* Why Choose Us & Target Audience */
#why-choose-us ul {
    list-style: disc;
    margin-left: 20px;
}

.audience-group {
    margin-bottom: 20px;
    padding: 15px;
    background: #eef7ee; /* Light green tint */
    border-left: 5px solid #5cb85c;
}

.audience-group h3 {
    color: #005691;
}

/* Final CTA */
#final-cta {
    background: #005691; /* Dark Blue background */
    color: #ffffff;
    text-align: center;
}

#final-cta h2 {
    color: #ffffff;
}

#final-cta .cta-button {
    margin-top: 20px;
    background: #fff;
    color: #005691;
}
#final-cta .cta-button:hover {
    background: #eee;
}

#final-cta p a {
    color: #fff;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #333;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
}

footer nav ul li a {
    color: #fff;
}

footer nav ul li a:hover {
    color: #5cb85c;
}

.disclaimer {
    font-size: 0.8em;
    color: #ccc;
    margin-top: 20px;
    padding: 10px;
    border-top: 1px solid #555;
}

.disclaimer p {
    margin-bottom: 5px;
}

.disclaimer a {
    color: #add8e6; /* Light blue for links in disclaimer */
}

footer p:last-child {
    margin-top: 20px;
}

/* Responsive */
@media(max-width: 768px){
    header #logo,
    header nav,
    header nav li {
        float: none;
        text-align: center;
        width: 100%;
    }
    header nav ul {
        margin-top:10px;
    }
    header nav li {
        padding: 5px 0;
        display: block;
    }
    .key-points,
    .service-cards {
        flex-direction: column;
    }
    .service-card {
        flex-basis: 100%;
    }
    .container {
        width: 95%;
    }
    #hero h1 {
        font-size: 36px;
    }
    #hero p {
        font-size: 18px;
    }
}

