/* OTK PAMA Landing Page Styles - Optimized Responsive Version */

:root {
    --primary-color: #9d4c9d;
    --primary-dark: #c792c1;
    --secondary-color: #dec8fe;
    --text-dark: #151314;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --highlight: #ffd335;
    --purple: #704fe6;
	--light-purple: #dec8fe;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MDIGI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

p, span {
    text-align: justify;
}
.wpml-ls-legacy-list-horizontal a {
	padding: 5px 5px !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.text-logo-footer {
    font-size: 4em;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-left {
    text-align: left;
}

.download-cta {
    font-weight: 700;
    line-height: 1em;
}

.download-cta span {
    font-size: 1.5em; 
}

.download-cta h2 {
    font-size: 3em; 
}

.btn.rounded-pill {
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 2px 5px 12px 0px #9d4c9d73;
}

.btn-warning {
    padding: 10px;
    border-radius: var(--bs-border-radius-pill);
}

.text-logo {
    font-size: 1.5em;
    margin-left: 10px;
}

/* NAVBAR STYLES */
.navbar {
    background: transparent;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 1.1em;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

/* HERO SECTION */
.hero-section {
    background: var(--primary-color);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before, .app-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    opacity: 0.3;
}

.hero-section::after, .app-features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.05"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-stars {
    position: absolute;
    animation: nhun 2s infinite;
}

.nhun {
    position: absolute;
    animation: nhun 2s infinite; 
}

.shape-1 {
    top: 200px;
    left: 40%;
    animation-delay: 0s;
}

.star-1 {
    top: -80px;
    left: -80px;
    animation-delay: 0s;
}

.star-2 {
    bottom: 0px;
    left: -100px;
    animation-delay: 0.5s;
}

.star-3 {
    bottom: -150px;
    left: 80%;
    animation-delay: 1s;
}

@keyframes nhun {
    0% { 
        transform: translateY(0px) scale(1);
    }
    10% {
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1);
    }
    100% { 
        transform: translateY(0px) scale(1);
    }
}

.qr-code img {
    min-height: 140px;
    width: auto;
}

.mdigi-download {
    gap: 15px;
}

.mdigi-download a img {
    max-height: 60px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
}

.download-buttons .btn:hover {
    transform: translateY(-2px);
}

.download-image img {
    max-height: 385px;
}

.hero-image-container {
    position: relative;
    height: 100%;
    margin-top: -100px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    animation: float 3s ease-in-out infinite;
    opacity: 0;
    transform: scale(1.5);
}

.floating-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 1s;
}

.icon-2 {
    top: 15%;
    right: 0;
    animation-delay: 1.3s;
}

.icon-3 {
    bottom: 0;
    left: 0;
    animation-delay: 1.6s;
}

.icon-4 {
    bottom: 0;
    right: 0;
    animation-delay: 1.9s;
}

@keyframes float {
    0% { 
        transform: translateY(0px) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}

.hero-character {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* ABOUT SECTION - FIXED */
.about-section {
    background: var(--white);
    padding: 80px 0;
    overflow-x: hidden;
}

.about-section .container {
    overflow-x: hidden;
}

.about-section .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.feature-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.feature-tabs .btn {
    border-radius: 10px;
    padding: 10px 20px;
    margin: 5px;
    transition: all 0.3s ease;
    width: auto;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    white-space: nowrap;
    min-width: fit-content;
    width: 40%;
}

.feature-tabs .btn.active {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

/* TAB CONTENT STYLES - FIXED */
.tab-content-section {
    margin-top: 50px;
    padding: 40px 0;
    position: relative;
    overflow-x: hidden;
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform, opacity;
}

.tab-content.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.tab-content.fade-out {
    opacity: 0;
    transform: translateY(-30px);
    z-index: 1;
}

.tab-content.fade-in {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.tab-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.tab-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tab-content-wrapper .tab-content {
    background-image: url(../images/icons/hoa-tim.webp);
    background-size: auto 100%;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.tab-image {
    overflow: hidden;
    max-width: 100%;
}

.tab-image .phone-mockup {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    max-width: 100%;
}

.tab-image .phone-mockup img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    border-radius: 20px;
    max-height: 500px;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* FEATURES SECTION */
.features-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* APP FEATURES SECTION */
.app-features-section {
    background: var(--primary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.6;
}

.rating i {
    color: #FFD700;
    margin-right: 2px;
}

/* DOWNLOAD SECTION */
.download-section {
    background: var(--white);
    padding: 80px 0;
}

.feature-item-modern {
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 140%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(157, 76, 157, 0.15);
    border-color: var(--primary-color);
}

.feature-item-modern:nth-child(1) {
    background-color: var(--light-purple);
}

.feature-item-modern:nth-child(2) {
    background-color: var(--purple);
    color: white;
}

.feature-item-modern:nth-child(2) .feature-text {
    color: white;
}

.feature-item-modern:nth-child(3) {
    background-color: #ffd335;
}

.feature-item-modern:nth-child(4) {
    background-color: var(--primary-color);
    color: white;
    background-size: 12%;
}

.feature-item-modern:nth-child(4) .feature-text {
    color: white;
}

.feature-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.feature-icon-modern {
    margin-right: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
	font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
    text-align: left;
}

.download-info h3 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.download-info .text-muted {
    color: #6b7280 !important;
    font-size: 1.1rem;
}

.download-btn:hover {
    background: transparent;
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-image: url(../images/icons/hinh-decor-1.svg);
    background-repeat: no-repeat;
    background-position: right 150px bottom 0px;
    background-size: 15%;
}

.accordion-item {
    background: transparent;
    overflow: hidden !important;
    border-radius: 10px !important;
    border: none;
    margin-bottom: 10px;
}

.accordion-button {
    background: transparent;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px;
    font-size: 2rem;
    border: solid 1px #f2f2f2;
}

.accordion-button:not(.collapsed), .accordion-body {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
    border: none;
}

.accordion-body {
    margin-top: -5px;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #f2f2f2;
}

/* FINAL CTA SECTION */
.final-cta-section {
    margin-bottom: -180px;
    z-index: 9;
    position: relative;
}

.final-cta-section .container {
    background: var(--purple);
    padding: 80px 80px;
    border-radius: 20px;
    background-image: url(../images/bg/bgPattern03.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* FOOTER */
.footer-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 12rem;
    border-radius: 100px 100px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-brand p{
	font-size: 1.5rem;
}

.footer-section .container {
    z-index: 2;
    position: relative;
}

.footer-brand {
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form,
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.wpcf7-not-valid-tip {
    color: var(--white) !important;
}

.form-row .mdigi-form {
    flex: 1;
    margin-bottom: 0;
}

.form-row-1,
.form-row-2 {
    display: flex;
    gap: 15px;
}

.form-row-1 .mdigi-form,
.form-row-2 .mdigi-form {
    flex: 1;
}

.form-row-3 {
    width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #666 !important;
    border-radius: 20px !important;
    padding: 8px 16px !important;
    width: 100% !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2) !important;
}

.contact-form button[type="submit"],
.contact-form input[type="submit"],
.wpcf7-form input[type="submit"] {
    background: #ffd335 !important;
    color: #333 !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 15px 30px !important;
    border-radius: 25px !important;
    width: 100% !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 10px;
}

.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover {
    background: #e6bd2e !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 211, 53, 0.4) !important;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--purple);
    transform: translateY(-2px);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 660px;
    height: 660px;
    background-image: url(../images/shape/hinh-decor-2.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

.footer-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -5%;
    width: 900px;
    height: 660px;
    background-image: url(../images/shape/hinh-decor-3.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

/* SWIPER STYLES */
.testimonials-swiper {
    position: relative;
    padding: 20px 0 60px 0;
}

.testimonial-slider {
    padding: 0 40px;
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.2);
}

.swiper-slide .testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover .testimonial-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.navbar-collapse.menu-mobile {
	display: none !important;
}

.footer-section .row {
	gap: 20px;
}

/* MOBILE AND RESPONSIVE FIXES */
@media (max-width: 768px) {
    .tab-content-wrapper .tab-content {
        background-size: auto 60%;
        background-position: right top;
    }
    
    .feature-tabs {
        flex-wrap: wrap;
        white-space: normal;
    }
    
    .feature-tabs .btn {
        white-space: normal;
        margin-bottom: 10px;
    }
}

/* Desktop Large (1400px-) */
@media (max-width: 1400px) {
	.text-logo-footer {
    font-size: 2em;
	}
	.faq-character {
		position: sticky;
		top: 100px;
		z-index: 10;
	}
	.accordion-button {
		font-size: 1.7rem;
	}
    .hero-title, .section-title{
        font-size: 2rem;
    }
	.hero-character {
		max-width: 90%;
	}
    .floating-icon img {
        width: 50px;
        height: 50px;
    }
    .navbar-collapse.menu-mobile {
        display: none !important;
    }
	.footer-brand p {
    font-size: 1rem;
	}
}
@media (min-width: 999px) and (max-width: 1199px) {
	.faq-character {
		position: sticky;
		top: 100px;
		z-index: 10;
	}
	.text-logo-footer {
    font-size: 2em;
	}
	.mdigi-download a img { 
	max-height: 50px;
	}
	.mdigi-download {
		gap: 0;
		flex-direction: row;
		align-items: center;
	}
	.qr span {
		font-size:.8rem;
	}
	.feature-text {
    font-size: 1.2rem; 
	}
	.final-cta-section .container {
    padding: 30px 80px;
	}
	.footer-brand p {
    font-size: 1rem;
	}
	.footer-section .row {
		gap: 30px;
	}
	.qr-code img {
    min-height: 7rem;
    width: auto;
	}
	.navbar-nav .nav-link {
	font-size: 1rem;
	}
	.accordion-button {
		font-size: 1.5rem;
	}
    .hero-title, .section-title{
        font-size: 2rem;
    }
	.hero-character {
		max-width: 90%;
	}
    .floating-icon img {
        width: 50px;
        height: 50px;
    }
    .navbar-collapse.menu-mobile {
        display: none !important;
    }
}
@media (min-width: 391px) and (max-width: 998px) {
	.faq-character {
		position: sticky;
		top: 100px;
		z-index: 10;
	}
	.download-cta h2 {
    font-size: 2em;
	}
	.download-cta span {
    font-size: 1.5em;
	}
	.text-logo-footer, .cta-title  {
    font-size: 2em;
	}
	.mdigi-download a img { 
	max-height: 2rem !important;
	}
	.mdigi-download {
		gap: 0;
		flex-direction: row;
		align-items: center;
	}
	.qr span {
		font-size:.8rem;
	}
	.feature-text {
    font-size: 1.2rem; 
	}
	.final-cta-section .container {
	padding: 50px 10px;
    }
	.footer-brand p {
    font-size: 1rem;
	}
	.footer-section .row {
		gap: 30px;
	}
	.qr-code img {
    min-height: 5rem;
    width: auto;
	}
	.navbar-nav .nav-link {
	font-size: 1rem;
	}
	.accordion-button {
		font-size: 1.5rem;
	}
    .hero-title, .section-title{
        font-size: 2rem;
    }
	.hero-character {
		max-width: 90%;
	}
    .floating-icon img {
        width: 50px;
        height: 50px;
    }
    .navbar-collapse.menu-mobile {
        display: none !important;
    }
	.footer-character {
		text-align: center;
	}
}
@media (max-width: 390px) {
	.footer-section {
	text-align: center;
	margin-top: 2rem;
	}
	.footer-section .row {
	gap: 10px;
    }
	.final-cta-section .container {
	padding: 5rem 20px; 
	}
	.navbar .container{
    padding: 10px 20px; 
	margin: 0 1rem;
	}
	.download-cta span {
    font-size: 1em;
	}
	.download-cta h2 {
    font-size: 2em;
	}
	.tab-content-section, .faq-section, .download-section  {
	padding:0;
	}
	.navbar-brand img{
	height: 3rem;
	}
	.navbar-brand {
    font-size: .8rem;
	}
	.mdigi-download {
	gap: 0;
	flex-direction: row;
	}
	.hero-content {
		padding-top: 8rem;
	}
	.text-logo-footer, .cta-title  {
    font-size: 2em;
	}
	.qr-code {
	align-items: flex-start !important;
	}
	.mdigi-download a img { 
	max-height: 2rem;
	}
	.qr span {
		font-size:.8rem;
	}
	.feature-text {
    font-size: 1.2rem; 
	}
	.footer-brand p {
    font-size: 1rem;
	}
	.footer-section .row {
		gap: 30px;
	}
	.qr-code img {
    min-height: 5.2rem;
	}
	.navbar-nav .nav-link {
	font-size: 1rem;
	}
	.accordion-button {
		font-size: 1.5rem;
	}
    .hero-title, .section-title{
        font-size: 1.7rem;
    }
	.hero-character {
		max-width: 90%;
		margin: 6rem 0;
	}
    .floating-icon img {
        width: 50px;
        height: 50px;
    }
    .navbar-collapse.menu-mobile, .star-3 {
        display: none !important;
    }
}