body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}
header {
    background: url('../images/hero-image.jpg') center/cover no-repeat;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    text-align: center;
    padding: 0 20px;
}
header h1 {
    font-size: 3em;
    margin: 0;
}
section {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}
section p {
    font-size: 1.2em;
    line-height: 1.6;
}
.contact-button {
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s;
}
.contact-button:hover {
    background-color: #555;
}
footer {
    padding: 10px;
    font-size: 0.9em;
    color: #777;
}
