body { font-family: Arial, sans-serif; margin: 0; color: #333; }
.header-container { display: flex; align-items: center; justify-content: space-between; padding: 20px 5%; border-bottom: 1px solid #ddd; }
nav ul { list-style: none; display: flex; gap: 20px; }
nav a { text-decoration: none; color: #333; font-weight: bold; font-size: 0.9em; }

.hero { text-align: center; padding: 100px 20px; }
.highlight { background-color: #eef31f; padding: 5px 15px; transition: opacity 0.5s; display: inline-block; }
.cta-subtext { color: #00c853; font-weight: bold; margin: 20px 0; }
.cta-buttons button { background: #d9534f; color: white; border: none; padding: 12px 25px; margin: 5px; cursor: pointer; font-weight: bold; }

#services, #about, #contact { text-align: center; padding: 60px 20px; }
.service-grid { display: flex; justify-content: center; gap: 40px; margin-top: 30px; }
.icon-circle { width: 100px; height: 100px; background-color: #d9534f; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 15px auto; color: white; font-size: 40px; }

@media (max-width: 768px) {
    .header-container { flex-direction: column; }
    .service-grid { flex-direction: column; align-items: center; }
}