body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 40px 20px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #333;
}

/* Intro Section */
.intro {
    max-width: 700px;
    margin: 0 auto 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.intro h2 {
    margin-bottom: 15px;
    color: #444;
}

.intro p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

.buttons button {
    padding: 10px 18px;
    margin: 8px;
    border: none;
    border-radius: 6px;
    background-color: #ff6b6b;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.buttons button:hover {
    background-color: #ff4b4b;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
