body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #495057;
    line-height: 1.6;
}

header {
    background-color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    color: #007bff;
    margin: 0;
    font-size: 2em;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007bff;
}

.hero {
    background-color: #e9ecef;
    padding: 100px 30px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    color: #212529;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    color: #6c757d;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

.section {
    padding: 80px 30px;
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section h2 {
    color: #212529;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.section ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
}

.section ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.section ul li:last-child {
    border-bottom: none;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 60px 30px;
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #495057;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}