@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}


.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
}

header {
    background-color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo p {
    margin: 0;
    font-weight: bold;
    font-size: 1.35rem;
    color: #0d2d5c;
    letter-spacing: -1px;
    white-space: nowrap;
}
.contact .call-button {
    color: #0d2d5c;
    background-color: transparent;
    font-weight: bold;
    text-decoration: none;
}

header .nav-links a {
    color: #0d2d5c;
    font-weight: bold;
    text-decoration: none;
}
.call-button {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    background: transparent;
    padding: 0;
    border: none;
    font-size: 1rem;
}

.ghost-button {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ghost-button:hover {
    background-color: #fff;
    color: #0d2d5c;
}

.cta-btn {
       background: #0241a1;
    color: #fff;
    padding: 15px 35px;
    font-size: 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.25rem;
    text-align: center;
    display: inline-block;
    font-weight: 700;
    position: relative;
    margin: 0 auto;
    text-align: center;
    display: block;
        max-width: 330px;
} 
.cta-btn:hover {
        background: #102e5b;
} 

main {
    padding: 0;
}

section {
    padding: 2rem;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/s1.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
        min-height: 380px;
}

.contact-us {
    background-color: #fff;
    /* padding: 4rem 2rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.contact-us-text {
    max-width: 50%;
}

.help-desk {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/s3.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
}

.dedicated-support {
    background-color: #0d2d5c;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.life-insurance-available {
    background-color: #f8f9fa;
    text-align: center;
    padding: 4rem 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

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

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
}

.life-insurance-available h2 {
    font-size: 2.5rem;
}

section img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

footer {
    background-color: #343a40;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .contact-us {
        display: flex;
        align-items: center;
    }

    .contact-us img {
        margin-right: 1rem;
        max-width: 50%;
    }

    main {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    section {
        width: 100%;
    }

    .contact-us,
    .dedicated-support,
    .life-insurance-available {
        width: 100%;
        /* margin: 0.5rem; */
    }
}


@media (max-width: 768px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

@media (max-width: 768px) {
    /* .cta-btn {
        width: 100%;
        display: block;
    } */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #fff;
        border-top: 1px solid #ddd;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .hamburger {
        display: block;
    }

    .contact-us {
        flex-direction: column;
    }

    .contact-us-text {
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    section {
        width: calc(33% - 0.5rem);
    }

    .hero, .help-desk, .life-insurance-available {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .call-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 768px) {
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo p {
        font-size: 1.1rem;
    }
}