body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    /* background-color: #f8f9fa; */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    /* text-align: center; */
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.section-title a {
    color: #002A7E;
    text-decoration: none;
}

.section-title a:hover {
    text-decoration: underline;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.feature-box {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 15px;
    width: 350px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}
.service-box img {
    width: 50%;
    border-radius: 50%;
    height: auto;
}

.feature-box h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    margin-top: 20px;
    padding: 40px;
    /* background-color: #f9fbff; */
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services-container .service-box {
    background-color: white;
    width: 250px;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-container .service-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    margin-top: 10px;
}

.services-container .service-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features, .services-container {
        flex-direction: column;
    }

    .feature-box, .services-container .service-box {
        width: 90%;
        margin: 10px auto;
    }
}