/* General styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    text-align: center;
    padding: 2em;
    background-color: #1d3557;
    color: white;
}

h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Hero section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2em 0;
}

.hero-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
}

/* Areas covered */
.areas-covered {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 2em;
}

/* Boxed section */
.boxed-section {
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 2em;
    background-color: #e0e0e0;
}

.box {
    background-color: #fff;
    padding: 1.5em;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.box h3 {
    color: #1d3557;
    margin-bottom: 1em;
}

.box ul {
    list-style: none;
    padding-left: 0;
}

.box ul li {
    font-size: 1.1em;
    margin-bottom: 0.8em;
}

/* Content section */
.content {
    margin: 0 auto;
    padding: 2em;
    max-width: 1200px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #1d3557;
}

p {
    font-size: 1.1em;
    margin-bottom: 1.5em;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 1em 0;
    text-align: center;
}

.footer-content {
    font-size: 0.9em;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content, .boxed-section {
        padding: 1.5em;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.75em;
    }

    p {
        font-size: 1em;
    }

    .box {
        width: 100%;
    }

    .boxed-section {
        flex-direction: column;
        gap: 1.5em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.9em;
    }

    .hero-img {
        width: 90%;
    }
}
