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

body {
    font-family: Georgia, serif;
    background-color: #f6f4f1;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero-image {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.2rem;
    font-weight: normal;
    color: #777;
    margin-bottom: 20px;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.location {
    font-style: italic;
    color: #888;
}

