/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 1rem 0;
}

header h1 {
    text-align: center;
    color: #e74c3c;
}

nav ul {
    list-style: none;
    text-align: center;
    margin-top: 1rem;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Service Sections */
.service-section {
    background: #fff;
    margin: 2rem 0;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-section:nth-child(even) {
    background: #f9f9f9;
}

.service-section h2 {
    margin-bottom: 1rem;
    color: #3498db;
}

.service-section p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}
