
header {
    font-size: 2.5rem !important;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-container {
    padding: 2.5rem;
    background-color: white;
    border: 4px solid #639f60;
    border-radius: 30px 5px 30px 5px;
    box-shadow: 15px 15px 0 rgba(255, 203, 119, 0.3);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-container:hover {
    transform: translateY(-5px);
    box-shadow: 15px 20px 0 rgba(255, 203, 119, 0.4);
}

.section-container::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #ffcb77;
    border-radius: 35px 10px 35px 10px;
    z-index: -1;
    pointer-events: none;
}

.white-bg {
    border-radius: 50px;
}

.intro {
    margin-bottom: 3rem;
    text-align: center;
}

.intro h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.intro p {
    font-size: 1.6rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}


iframe {
    width: 100%;
    height: 500px;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}


.steps {
    margin: 3rem 0;
}

.steps h2 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    border-bottom: 2px solid #ffcb77;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.step {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(248, 248, 248, 0.7);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.step:hover {
    background: rgba(248, 248, 248, 1);
}

.step h3 {
    font-size: 1.8rem;
    color: #639f60;
    margin-bottom: 1rem;
}

.step p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.steps ol, .steps ul {
    padding-left: 2rem !important;
}

.steps li {
    font-size: 1.5rem !important;
    color: rgb(54, 15, 15);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}


.testimonials {
    margin: 4rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}


.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 100px; /* Minimum height */
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid rgb(255, 218, 242); /* Debug border */
}


.testimonial-icon {
    border-radius: 50%;
    background-color: #fff;
    padding: 10px; /* Reduced padding */
}

.testimonials p {
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Hover effects */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 159, 96, 0.3);
    filter: drop-shadow(0 5px 10px rgba(255, 203, 119, 0.2));
}

/* Sequential hover effects */
.testimonials .col:nth-child(1) .testimonial-card { transition-delay: 0.05s; }
.testimonials .col:nth-child(2) .testimonial-card { transition-delay: 0.1s; }
.testimonials .col:nth-child(3) .testimonial-card { transition-delay: 0.15s; }

.trust {
    text-align: center;
    padding: 2rem;
    background: rgba(99, 159, 96, 0.1);
    border-radius: 15px;
}

.trust h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.trust p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}


.btn-success {
    background-color: #639f60;
    border-color: #639f60;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block !important;
}

.btn-success:hover {
    background-color: #4e8a4b;
    border-color: #4e8a4b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
    .section-container {
        padding: 1.5rem;
    }
    
    iframe {
        height: 300px;
    }
    
    .intro h1 {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    header {
        font-size: 2rem !important;
    }
    
    iframe {
        height: 250px;
    }
    
    .step {
        padding: 1rem;
    }
}