* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #ffff;
}

.container {
    width: 80%;
    margin: 0 auto;
}

#hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.5rem;
}

#about, #contact {
    padding: 2rem 0;
    text-align: center;
}

#about h2, #images h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

#images {
    padding: 2rem 0;
}

.image-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#contact {
    background-color: #333;
    color: #fff;
}

#contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#contact p {
    font-size: 1.2rem;
}
