/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Header Styles */
header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Services Section */
.services {
    padding: 40px 0;
    background-color: #f4f4f4;
}

.services h2 {
    text-align: center;
    color: #007bff;
    margin-bottom: 30px;
}

.service-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-box {
    background-color: white;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    text-align: center;
    transition: transform 0.3s;
}

.service-box h3 {
    color: #007bff;
}

.service-box p {
    font-size: 14px;
    color: #555;
}

/* Hover Effect for Service Box */
.service-box:hover {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    margin-top: 40px;
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-top: 2px solid #ddd;
}

.contact-section h3 {
    color: #007bff;
}

.contact-section p {
    font-size: 16px;
    color: #333;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin: 0;
    font-size: 14px;
}
