* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services {
    display: grid;
    gap: 2rem;
    padding-top: 2rem;
}

.service-category {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
}

.service-category h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 0.5rem;
}

.service-list a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.service-list a:hover {
    color: #2980b9;
}

footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 2px solid #eee;
}

.service-description {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

code {
    font-family: monospace;
    padding: 0.2em 0.4em;
    margin: auto 0.2em;
    border-radius: 3px;
    background-color: #9090a040
}
