/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.services h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
    color: #7f8c8d;
}

/* Why Choose Us Section */
.why-choose {
    padding: 60px 0;
    background-color: #fff;
}

.why-choose h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.why-choose ul {
    list-style-type: none;
    text-align: center;
}

.why-choose ul li {
    font-size: 18px;
    margin: 10px 0;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #2c3e50;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact button {
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #c0392b;
}

/* Footer */
footer {
    background-color: #34495e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}
