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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    line-height: 1.65;
    font-size: 16px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 30px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 20px;
    color: #0066cc;
    font-weight: 500;
    margin-bottom: 8px;
}

.location {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

p {
    margin-bottom: 24px;
    color: #555;
    line-height: 1.75;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 8px;
    display: inline-block;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

li {
    margin-bottom: 14px;
    line-height: 1.7;
}

a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    color: #0066cc;
    transition: color 0.2s ease;
}

li:hover .icon {
    color: #0052a3;
}
