.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/hardware-store.jpg') center/cover;
    padding: 100px 0;
    margin-bottom: 30px;
}

.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

.contact-info p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.contact-info a:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
}
