
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
    color: #333;
}
header {
    background-color: #1e1e1e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
}
.logo img {
    height: 360px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    color: #ffaa33;
}
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #1e1e1e 0%, #333 100%);
    color: white;
}
.hero h1 {
    font-size: 48px;
}
.content {
    padding: 40px;
    text-align: center;
}
.content ul {
    list-style: none;
    padding: 0;
}
.content li {
    margin: 10px 0;
    font-size: 18px;
}
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.gallery img {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
footer {
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}
