.hero-section {
    background: linear-gradient(135deg, #00796b, #009688);
    color: white;
    padding: 6rem 0;
    margin-bottom: 3rem;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.feature-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #00796b, #4db6ac);
    color: white;
    margin: 0 auto 1.5rem;
    font-size: 2.25rem;
    box-shadow: 0 8px 20px rgba(0, 150, 136, 0.3);
}

.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.cta-section {
    background: linear-gradient(135deg, #00796b, #009688);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-card {
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    background-color: #fff;
}

.step-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #009688;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(0, 150, 136, 0.3);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00796b, #4db6ac);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 5px 15px rgba(0, 150, 136, 0.25);
}

.section-heading {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00796b, #4db6ac);
    border-radius: 2px;
}

.btn-light {
    background-color: white;
    color: #00796b;
    border: none;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #009688;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}