body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
}
.services-hero .image-placeholder {
background-color: #ddd;
height: 300px;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
color: #555;
}
.services-list {
padding: 40px 20px;
text-align: center;
}
.services-list h1 {
color: #238d7a;
margin-bottom: 30px;
animation: fadeInDown 1s ease-out;
}
.service-cards {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.service-card {
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 8px;
padding: 20px;
width: 250px;
transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.icon-placeholder {
background-color: #ddd;
width: 80px;
height: 80px;
margin: 0 auto 15px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
}
.service-card h3 {
color: #238d7a;
margin-top: 10px;
}
@keyframes fadeInDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
.service-cards {
flex-direction: column;
align-items: center;
}
}