/* Contact Info Section Styles - Project Help Solutions */

.contact-info-section {
    margin-bottom: 3rem;
}

.contact-info-item {
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-info-item i {
    font-size: 2.5rem;
    color: #c9f31d; /* Light green color */
    margin-bottom: 1rem;
    display: block;
}

.contact-info-item h4 {
    color: #ffffff; /* White color for field names */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item p,
.contact-info-item a {
    color: #c9f31d; /* Light green color for text and links */
    font-size: 1rem;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-item a:hover {
    color: #ffffff; /* White on hover */
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-item {
        padding: 1.5rem 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-item i {
        font-size: 2rem;
    }
    
    .contact-info-item h4 {
        font-size: 1rem;
    }
    
    .contact-info-item p,
    .contact-info-item a {
        font-size: 0.9rem;
    }
}
