body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background: #0b5ed7;
    color: #fff;
}

.logo {
    max-width: 80px;
    margin-bottom: 10px;
}

.section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

.section.light {
    background: #f5f7fa;
}

.content {
    display: flex;
    gap: 30px;
    align-items: center;
}

.content.reverse {
    flex-direction: row-reverse;
}

.content img {
    max-width: 300px;
    border-radius: 6px;
}

h2 {
    color: #0b5ed7;
}

.list {
    list-style: none;
    padding: 0;
}

.list li {
    padding: 6px 0;
}

.contact-form {
    max-width: 400px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background: #0b5ed7;
    color: #fff;
    border: none;
    cursor: pointer;
}

.success {
    color: green;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }
    
/* Who We Serve - Flexbox Tiles */

.serve-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.serve-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 1 1 calc(25% - 20px);
}

.serve-card h3 {
    margin-bottom: 10px;
    color: #0b5ed7;
    font-size: 18px;
}

.serve-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Hover effect */
.serve-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 992px) {
    .serve-card {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .serve-card {
        flex: 1 1 100%;
    }
}


