* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: 2rem auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: 2.5rem;
    color: #333;
}

.header p {
    font-size: 1.1rem;
    color: #666;
}

.contact {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact a {
    color: #007BFF;
    text-decoration: none;
    margin: 0 10px;
}

.contact a:hover {
    text-decoration: underline;
}

.section {
    margin-bottom: 2rem;
}

.section h2 {
    font-size: 2rem;
    color: #333;
    border-bottom: 2px solid #007BFF;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.section ul {
    list-style-type: none;
}

.section ul li {
    margin-bottom: 0.5rem;
}

.highlight {
    font-weight: bold;
}
#anchor {
    text-decoration: none;
    color: #007BFF;
}