/* Index Page: Message Box */
.message-box {
    text-align: center;
    padding: 20px;
}

.message-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.message-box h3 {
    font-size: 22px;
    margin: 20px 0 10px;
}

.message-box p {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Index Page: Photo Gallery */
.photo-container {
    width: 90%;
    max-width: 1200px;
    margin: 20px auto;
}

.photo-pair {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.photo {
    width: 45%;
    text-align: center;
}

.photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.description {
    margin-top: 10px;
    font-size: 16px;
    color: #666666;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .photo-pair {
        flex-direction: column;
        align-items: center;
    }

    .photo {
        width: 90%;
    }
}