body {
    font-family: "Poppins", sans-serif;
    background: #f5f7fa;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

@media (max-height: 677px) {
    .hero-section {
        padding-top: 120px;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #495057 !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #6c757d !important;
    margin: 0 15px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #4f7cff !important;
}

.navbar-nav .nav-link.active {
    color: #4f7cff !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
}

.navbar {
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar.show {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .navbar-brand {
    transform: scale(0.9);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 124, 255, 0.3);
}

.hero-countainer {
    display: flex;
}

@media (max-width: 820px) {
    .hero-countainer {
        display: none;
    }
}
.hero-countainer-mobile {
    display: none;
}

@media (max-width: 820px) {
    .hero-countainer-mobile {
        display: flex;
        padding-top: 4rem;
    }
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn-daftar {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: inline-block;
    margin-right: 20px;
    text-align: center;
}

@media (max-width: 820px) {
    .btn-daftar {
        background: linear-gradient(135deg, #4f7cff, #6366f1);
        border: none;
        padding: 15px 35px;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: white;
        display: inline-block;
        width: 100%;
    }
}

.btn-daftar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 124, 255, 0.4);
    color: white;
}

.hero-image {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

/* Card Section */
.card-section {
    background: linear-gradient(135deg, #f1f4ff 0%, #e8efff 100%);
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1rem;
    }
}

.section-subtitle {
    color: #717171;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border: none;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.card-icon.pencatatan {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    color: white;
}

.card-icon.balabot {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.card-icon.kelas {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
}

.feature-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
}

.card-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.benefits-image {
    position: relative;
    animation: float 8s ease-in-out infinite;
}

.benefits-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    line-height: 1.3;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.benefit-item:hover {
    background: rgba(99, 102, 241, 0.05);
    padding-left: 15px;
    padding-right: 15px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon i {
    font-size: 24px;
    color: #4a3aff;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    transform: scale(1.1);
    color: #4a3aff;
}

.benefit-text {
    font-size: 1.1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.btn-coba-gratis {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-coba-gratis:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    color: white;
    background: linear-gradient(135deg, #4f7cff, #6366f1);
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8efff 100%);
    position: relative;
}

.pricing-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: none;
    margin-bottom: 30px;
}

.pricing-card.popular {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(79, 124, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.pricing-card.popular::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.plan-icon.pro {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1976d2;
}

.plan-icon.business {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.plan-icon.enterprise {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.plan-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pricing-card.popular .plan-name {
    color: white;
}

.plan-description {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.pricing-card.popular .plan-description {
    color: rgba(255, 255, 255, 0.9);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.pricing-card.popular .plan-price {
    color: white;
}

.plan-period {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card.popular .plan-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-btn {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.pricing-btn.btn-outline {
    background: transparent;
    border: 2px solid #4f7cff;
    color: #4f7cff;
}

.pricing-btn.btn-white {
    background: white;
    color: #4f7cff;
    border: none;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 124, 255, 0.3);
    color: white;
}

.pricing-btn.btn-outline:hover {
    background: #4f7cff;
    color: white;
}

.pricing-btn.btn-white:hover {
    background: #f8f9fa;
    color: #4f7cff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #495057;
    padding: 8px 0;
}

.pricing-card.popular .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.features-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4a3aff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-card.popular .features-list li i {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.features-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.pricing-card.popular .features-title {
    color: white;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonial-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    text-align: left;
}

.testimonial-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.05),
        transparent
    );
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-text {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    text-align: left;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.testimonial-rating i.bi-star-fill {
    color: #fbbf24;
}

.testimonial-rating i.bi-star {
    color: #d1d5db;
}

.testimonial-card:hover .testimonial-rating i.bi-star-fill {
    transform: scale(1.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.author-avatar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #6366f1, #8b5cf6) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    transition: all 0.3s ease;
    opacity: 0;
}

.testimonial-card:hover .author-avatar::after {
    opacity: 1;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 5px 0;
}

.author-position {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: #f5f7ff;
    position: relative;
}

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.02);
}

.faq-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f1f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 20px;
    color: #8b94a8;
    transition: all 0.3s ease;
}

.faq-icon.active,
.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
}

.faq-icon.active i,
.faq-item.active .faq-icon i {
    color: white;
}

.faq-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.faq-arrow {
    font-size: 16px;
    color: #8b94a8;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.faq-item.active .faq-arrow,
.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: #6366f1;
}

.faq-answer {
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.faq-answer-content {
    padding: 24px 30px 30px 98px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.faq-answer-content strong {
    color: #374151;
    display: block;
    margin-bottom: 8px;
}

/* Footer Section */
.footer-section {
    background: white;
    color: #263238;
    position: relative;
    overflow: hidden;
}

.footer-main {
    display: flex;
    flex-direction: row;
    padding: 80px 0 40px;
}

.responsive-footer-bottom {
    display: flex;
    flex-direction: row;
}

.footer-main-mobile {
    display: none;
}

.footer-description {
    color: #263238;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #263238;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #263238;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-menu a:hover {
    color: #6366f1;
    padding-left: 5px;
}

.newsletter-description {
    color: #263238;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #263238;
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: #263238;
    padding: 12px 15px;
}

.newsletter-input::placeholder {
    color: #263238;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #6366f1;
    box-shadow: none;
    color: #263238;
}

.newsletter-btn {
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    border: none;
    border-radius: 0 12px 12px 0;
    color: white;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #5855f4, #7c3aed);
    transform: translateX(2px);
}

.footer-bottom {
    border-top: 1px solid #97999a;
    padding: 30px 0;
}

.copyright {
    color: #263238;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    margin: 0px;
}

.footer-bottom-links a {
    color: #263238;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0px;
}

.footer-bottom-links a:hover {
    color: #6366f1;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f7cff, #6366f1);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.computer-icon {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 888px) {
    .hero-title {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        margin-top: 100px;
    }

    .hero-title,
    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .computer-icon {
        width: 280px;
    }

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

    .feature-card {
        margin-bottom: 30px;
    }

    /* benefit */
    .benefits-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .benefits-section {
        padding: 50px 0;
        text-align: center;
    }

    .benefits-image {
        margin-bottom: 40px;
    }

    /* Price */
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 2.2rem;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 60px;
    }

    .pricing-card.popular {
        transform: none;
        margin-bottom: 30px;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .plan-name {
        font-size: 1.6rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    /* Testimonial */
    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-title {
        font-size: 2rem;
        text-align: center;
    }

    .testimonial-subtitle {
        text-align: center;
    }

    .testimonial-card {
        margin-bottom: 30px;
    }

    /* Faq */
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px 20px;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .faq-icon i {
        font-size: 18px;
    }

    .faq-text {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 20px 20px 25px 75px;
        font-size: 14px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }

    @media (max-width: 572px) {
        .footer-main {
            display: none;
        }
        .footer-main-mobile {
            display: flex;
            flex-direction: row;
        }
        .footer-description {
            color: #263238;
            line-height: 1.6;
            margin-bottom: 16px;
            text-align: center;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-link {
            width: 32px;
            border-radius: 6px;
            height: 32px;
        }

        .footer-bottom {
            border-top: 1px solid #97999a;
            padding: 6px 0;
        }

        .responsive-footer-bottom {
            display: flex;
            flex-direction: column;
            padding: 16px 0;
            margin-bottom: 24px;
        }
        .footer-bottom-links {
            justify-content: center;
            margin-top: 0px;
        }
    }
}
