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

header {
    background: #004080;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background: #003366;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    display: block;
}

nav a:hover {
    background: #00509e;
}

.hero {
    background: url('banner.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

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

section {
    padding: 2rem;
}

.about, .services, .testimonials, .contact {
    background: #f4f4f4;
}

.about h2, .services h2, .testimonials h2, .contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    text-align: justify-all;
}

.about p {
    margin: 0 auto;
    max-width: 800px;
    text-align: justify-all;
}

table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
}
table td {
    word-break: break-all;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 1rem;
    text-align: left;
}

table th {
    background: #004080;
    color: white;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 1rem;
}

/* Benefits Section */
.benefits {
    background: #e6f7ff;
    padding: 2rem;
    border-radius: 8px;
}

.benefits h2 {
    color: #004080;
    text-align: center;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.benefits li {
    background: #fff;
    margin: 0.5rem 0;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefits li strong {
    color: #00509e;
}

/* Projects Section */
.projects {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
}

.projects h2 {
    color: #004080;
    text-align: center;
    margin-bottom: 1rem;
}

.projects ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.projects li {
    background: #fff;
    margin: 0.5rem 0;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.projects li strong {
    color: #00509e;
}

/* Contact Section */
.contact {
    background: #e6f7ff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact h2 {
    color: #004080;
    margin-bottom: 1rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.contact form input,
.contact form textarea,
.contact form button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.contact form button {
    background: #004080;
    color: white;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.contact form button:hover {
    background: #00509e;
}

.centered {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        padding: 0.5rem;
    }

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

    section {
        padding: 1rem;
    }

    .about p {
        padding: 0 1rem;
        text-align: justify-all;
    }

    table {
        width: 100%;
    }

    .benefits ul, .projects ul {
        padding: 0 1rem;
    }

    .benefits li, .projects li {
        padding: 0.5rem;
    }

    .contact form {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 40vh;
    }

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

    nav a {
        padding: 0.3rem;
    }

    .benefits li, .projects li {
        padding: 0.3rem;
    }

    .contact form input,
    .contact form textarea,
    .contact form button {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}