body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.quicksand-google-font {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #d11e36d2;
    color: #0f0f0f;
}

header .logo {
    font-size: 1.5em;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #1c0101;
    text-decoration: none;
}

.align-center {
    text-align: center;
}


#hero {
    background: url('hero-image.png') no-repeat center center/cover;
    background: linear-gradient(to right, #9abadd, #a2be7f);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

#hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#hero button {
    padding: 10px 20px;
    font-size: 1em;
    background: #ff7f50;
    border: none;
    color: #fff;
    cursor: pointer;
}

#services,
#why-choose-us,
#testimonials,
#contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #fefefe;
}

#offer-healthcare {
    background: linear-gradient(to right, #9abadd, #a2be7f);
}

#offer-schools {
    background: linear-gradient(to right, #9abadd, #a2be7f);
}

#offer-government {
    background: linear-gradient(to right, #9abadd, #a2be7f);
}

#services div {
    opacity: 0.9;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
}

.card h3 {
    margin-top: 0;
}

.card button {
    padding: 10px 20px;
    background: #333;
    border: none;
    color: #fff;
    cursor: pointer;
}

.three-columns {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.three-columns div {
    width: 30%;
}

.carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.carousel .testimonial {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form input,
form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

footer {
    background: #d11e36d2;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.social-media a img {
    width: 20px;
    margin: 0 10px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
}

.red {
    color: red;
}

img {
    border-radius: 15px 15px 15px 15px;
}

.card {
    flex: 1 1 calc(45% - 20px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
    text-align: left;
}

.card h3 {
    margin-top: 0;
}

.card p {
    font-size: 16px;
    margin: 20px;
    line-height: 1.5;
}

.card button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.cta-button {
    font-size: 1.25rem;
}

.cta-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

.threat-section {
    padding: 2rem 0;
}

.threat-header {
    margin-bottom: 2rem;
}

.threat-item {
    margin-bottom: 2rem;
}

.threat-item h5 {
    margin-top: 1rem;
}

.threat-subsection {
    margin-top: 1rem;
}

.threat-subsection h6 {
    margin-top: 1rem;
    font-weight: bold;
}

 .myth-section {
     padding: 2rem 0;
 }

 .myth-header {
     margin-bottom: 2rem;
 }

 .myth-item {
     margin-bottom: 1.5rem;
 }

 .myth-item h5 {
     margin-top: 1rem;
 }

 .myth-subsection h6 {
     margin-top: 1rem;
     font-weight: bold;
 }

@media (max-width: 768px) {
    .card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .card {
        flex: 1 1 100%;
    }
}