body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f3f7fa;
    color: #1a2a2f;
}

header {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px #000;
}

header p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 6px #222;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #eaf6f6;
}

.gallery img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.info {
    padding: 2rem 1rem;
    text-align: center;
}

.info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info ul {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.info ul li {
    margin: 0.5rem 0;
    padding: 0.5rem 0;
}

footer {
    text-align: center;
    padding: 1.5rem 0 1rem 0;
    background: #1a2a2f;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
