body {
    font-family: 'Georgia', serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #2c2c2c;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

main {
    padding: 1rem;
}

.hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
}

.contact {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact a {
    color: #8B4513;
    text-decoration: none;
}

footer {
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}
