body {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.section-header {
    background-color: #517B39;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.section-header h1 {
    font-size: 2.5rem;
}

.section-title {
    font-size: 1.8rem;
    color: #517B39;
    margin-top: 2rem;
    text-align: center;
    padding: 15px;
}

.testimonial-section {
    background: linear-gradient(to right, rgba(135, 190, 65, 0.7), rgba(145, 196, 234, 0.7));
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-video video {
    width: 400px;
    height: 200px;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.testimonial-video:hover video {
    transform: scale(1.05);
}

.testimonial-video h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #333;
    text-align: center;
}

.motivational-quote {
    font-size: 1.5rem;
    color: #91C4EA;
    text-align: center;
    font-style: italic;
    margin: 2rem 0;
}

.motivational-quote:hover {
    color: #87BE41;
}

.action-button {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-contact {
    background-color: #FAE605;
    color: #000;
    padding: 1rem 2rem ;
    border: none;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    margin: 20px;
}

.btn-contact:hover {
    background-color: #87BE41;
    color: #fff;
}

.result-section {
    background-color: #F5F5F5;
    padding: 2rem 0;
    text-align: center;
    margin: 10px;
}

.result-section h2 {
    color: #517B39;
    margin-bottom: 1.5rem;
}

.result-section p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.quote-box {
    border-left: 5px solid #87BE41;
    padding-left: 1rem;
    margin: 1rem 0;
}

.quote-author {
    text-align: right;
    font-size: 1rem;
    color: #517B39;
}