.section-body {
    background: url(../images/bj-account.png) no-repeat center center;
    background-size: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Left Side Hero Content Styles */

 .hero-title {

    font-family: 'Playfair Display', serif;

    font-size: 3.5rem;

    color: var(--brand-red);

    margin-bottom: 20px;

}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 400px;
}

.features-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.feature-item {
    padding: 1rem;
    text-decoration: none;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #e8a87c;
    font-size: 3rem; /* Larger size for desktop */
}

.feature-icon img {
    width: auto;
    height: 80px;
    object-fit: cover;
}

.feature-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.app-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.app-store-btn, .google-play-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

.app-store-btn:hover, .google-play-btn:hover {
    transform: scale(1.05);
}

.app-store-btn img, .google-play-btn img {
    border-radius: 8px;
    width: auto;
    height: 60px;
    object-fit: contain;
}

.min-vh-75 {
    min-height: 75vh;
}

.contact-section {
    padding-left: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .feature-icon img {
        width: auto;
        height: 60px;
    }

    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .features-section {
        text-align: center;
    }

    .app-download-section {
        text-align: center;
    }

    .contact-section {
        padding-left: 0;
        margin-top: 3rem;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .feature-icon img {
        width: auto;
        height: 40px;
    }

    .feature-item {
        padding: 0.5rem;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-store-btn img, .google-play-btn img {
        height: 40px;
        width: auto;
    }
}

@media (max-width: 575.98px) {

    .features-section .row {
        justify-content: center;
    }

    .features-section .col-md-4 {
        flex: 0 0 auto;
        width: 50%;
    }
}

.hero-content {
    padding: 200px 0 80px;
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 100px 0 50px;
    }
}