/* Apply Open Sans font globally */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    padding: 50px 20px 50px;
    background-color: #edf3ef;
    display: flex;
    align-items: center;
}

/* Brand Logo */
.brand-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: #5d5d5d;
    margin-bottom: 30px;
}

/* Main Heading */
.main-heading {
    font-size: 3rem;
    font-weight: 500;
    color: #3d3d3d;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* Learn More Button */
.btn-learn-more {
    background-color: #789d7c;
    color: white;
    padding: 12px 50px;
    line-height: 1;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #6a8a7c;
    color: white;
}

/* Promotion Text */
.promotion-text {
    margin-bottom: 30px;
}

.promo-title {
    color: #7c9d8e;
    font-size: 1.2rem;
    margin-bottom: 0px;
    font-weight: 600;
}

.promo-details {
    color: #3d3d3d;
    font-size: 1.1rem;
    margin-top: 0;
}

/* Testimonial Images */
.testimonial-images {
    max-width: 900px;
    margin: 0 auto;
}

.img-wrapper {
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    margin-bottom: 15px;
    animation: roundCorners 1.5s ease-out forwards;
}

.testimonial-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
    animation: zoomOut 1.5s ease-out forwards;
}

.testimonial-images img:hover {
    animation: zoomIn 1.5s ease-out forwards;
    cursor: pointer;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}


@keyframes roundCorners {
    0% {
        border-radius: 0;
    }
    100% {
        border-radius: 8px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-title {
        font-size: 3rem;
    }

    .main-heading {
        font-size: 2rem;
    }
}