body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background: #f0f8ff;
    color: #333;
    line-height: 1.5;
}

header h1 {
    text-align: center;
    font-size: 2.5em;
    color: #228B22;
}

header p {
    text-align: center;
    font-size: 1.1em;
    margin-top: 0.3em;
    color: #4a6741;
}

h2 {
    color: #4a6741;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.2em;
    margin-bottom: 1em;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 0 10px;
}

.photo-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 1.2rem;
    background: white;
    border: 2px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.photo-card:hover {
    transform: translateY(-5px);
}

.photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.photo-card a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.photo-card a:hover {
    color: #dc2626;
}

#contact {
    margin: 25px 0;
    padding: 1.5rem;
    background: white;
    border-left: 5px solid #8B008B;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

#contact a {
    font-weight: bold;
    color: #dc2626 !important;
}

@media (max-width: 768px) {
    .gallery {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .photo-card {
        max-width: 100%;
        flex: 1 1 auto;
    }

    header h1 {
        font-size: 2em;
    }

    body {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .photo-card {
        padding: 1rem;
    }

    .photo-card img {
        height: 180px;
    }
}