body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 150px 0;
}

.cta-button {
    background-color: #ff4757;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #ff6b81;
    transform: translateY(-3px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #343a40;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
}

.footer {
    background: #343a40;
    color: white;
    padding: 60px 0;
}

.footer a {
    color: #ff4757;
    text-decoration: none;
}

.footer a:hover {
    color: #ff6b81;
}

.icon-custom {
    color: #ff4757;
}