.services-header {
    background: linear-gradient(135deg, #1E6956, #3AB795);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.services-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.services-header p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.service {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service i {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1E6956;
}

.service h3 {
    font-size: 1.5rem;
    color: #1E6956;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    color: #555;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-section {
    text-align: center;
    background: #3AB795;
    color: #fff;
    padding: 60px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-btn {
    background: #fff;
    color: #3AB795;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background: #1E6956;
    color: #fff;
}