/* Social Media Marketing Service CSS - matches other service pages */
@import url('../web-development.css');

/* Override background for social media marketing */
.service-hero {
	background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6)), 
				url('../../../Images/istockphoto-2175436587-612x612.jpg') center/cover no-repeat !important;
	background-attachment: fixed !important;
}
.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .platforms-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        gap: 15px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .platforms-grid {
        gap: 10px;
        padding: 10px;
        flex-direction: column;
    }
}