body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
.hero {
    background-image: url('/images/hero.jpg');
    background-size: cover;
    background-position: 0 0;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0)
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.cta-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.photo-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.contact {
    background-color: #f4f4f4;
    padding: 2rem;
    text-align: center;
}

