/* Hover Effects for Navigation Links */
nav a:hover {
    color: #ffd700;
    transition: color 0.3s ease-in-out;
}

/* Interactive Hover Effects for Service Cards */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

/* Responsive Image Gallery */
.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Accessibility Improvements */
a:focus, button:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Responsive Font Sizes */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    /* Adjustments for smaller screens */
}
