/* Original Design Styles - Matching the exact original design */

/* Banner Section */
.banner.position-relative {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.leftSec {
    width: 100%;
}

.rightSec {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .leftSec {
        width: 50%;
    }
    .rightSec {
        width: 50%;
    }
}

/* Widget Styles */
.widget-wrapper {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.wallet-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 25px 70px rgba(106, 81, 232, 0.25), 0 0 0 1px rgba(106, 81, 232, 0.1);
    border: 2px solid rgba(106, 81, 232, 0.15);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wallet-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6A51E8 0%, #C264F4 50%, #00FFB6 100%);
    border-radius: 25px 25px 0 0;
}

.wallet-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 81, 232, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.widget-title.text-capitalize {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a1a2e 0%, #6A51E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.text-purple {
    color: #6A51E8 !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(106, 81, 232, 0.2);
    position: relative;
    z-index: 1;
}

/* Counter/Countdown */
.counter {
    margin: 0.75rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.inner-counter {
    padding: 0.5rem 0;
    width: 100%;
}

.time-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    max-width: 65px;
    padding: 0.4rem 0.3rem;
    background: linear-gradient(135deg, rgba(106, 81, 232, 0.05) 0%, rgba(194, 100, 244, 0.05) 100%);
    border-radius: 10px;
    border: 1px solid rgba(106, 81, 232, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.time-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 81, 232, 0.15);
    border-color: rgba(106, 81, 232, 0.2);
}

.time-card .indicator {
    font-size: 0.6875rem;
    color: #6A51E8;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.time-card .value {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6A51E8 0%, #C264F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 10px rgba(106, 81, 232, 0.1);
}

/* Progress Bar */
.progress {
    position: relative;
    background: linear-gradient(135deg, rgba(106, 81, 232, 0.08) 0%, rgba(194, 100, 244, 0.08) 100%);
    border-radius: 50px;
    height: 38px;
    overflow: hidden;
    margin: 0.5rem 0;
    border: 2px solid rgba(106, 81, 232, 0.15);
    box-shadow: inset 0 2px 8px rgba(106, 81, 232, 0.1);
    position: relative;
    z-index: 1;
}

.progress .bar {
    height: 100%;
    background: linear-gradient(90deg, #6A51E8 0%, #C264F4 35%, #00FFB6 100%);
    border-radius: 50px;
    transition: width 0.5s ease;
    position: relative;
    min-width: 5%;
    box-shadow: 0 0 20px rgba(106, 81, 232, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.progress .bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    border-radius: 50px;
}

.progress .bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/rainbow-bar.png');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    border-radius: 50px;
}

.progress .status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

/* Purchase Info */
.purchase-info {
    font-size: 0.6875rem;
    margin: 0.5rem 0;
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(106, 81, 232, 0.03) 0%, rgba(194, 100, 244, 0.03) 100%);
    border-radius: 10px;
    border: 1px solid rgba(106, 81, 232, 0.08);
    position: relative;
    z-index: 1;
}

.purchase-info > div {
    flex: 1;
    padding: 0.3rem 0.4rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.purchase-info > div:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.purchase-info .text-uppercase {
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.5px;
}

.purchase-info .text-purple {
    font-size: 0.875rem;
    font-weight: 700;
    color: #6A51E8 !important;
    text-shadow: 0 1px 3px rgba(106, 81, 232, 0.2);
}

/* Swap Area */
.swapArea {
    margin-top: 0.75rem;
    width: 100%;
}

.swapArea .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.swapArea .btn-primary {
    background: linear-gradient(135deg, #6A51E8 0%, #C264F4 50%, #00FFB6 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(106, 81, 232, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.swapArea .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.swapArea .btn-primary:hover::before {
    left: 100%;
}

.swapArea .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(106, 81, 232, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.swapArea .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(106, 81, 232, 0.4);
}

.buy-btn {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
}

.solana {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.poweredByIcon {
    height: 22px;
    width: auto;
    margin-left: 0.5rem;
}

.swapArea .text-decoration-underline {
    color: #6A51E8;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.swapArea .text-decoration-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6A51E8, #C264F4);
    transition: width 0.3s ease;
}

.swapArea .text-decoration-underline:hover {
    color: #C264F4;
}

.swapArea .text-decoration-underline:hover::after {
    width: 100%;
}

.swapArea .text-deepBlue {
    color: #1a1a2e;
    font-weight: 600;
}

.swapArea .poweredByIcon {
    filter: drop-shadow(0 2px 4px rgba(106, 81, 232, 0.2));
    transition: all 0.3s ease;
}

.swapArea .poweredByIcon:hover {
    filter: drop-shadow(0 4px 8px rgba(106, 81, 232, 0.4));
    transform: scale(1.05);
}

/* Additional Widget Enhancements */
.wallet-box > * {
    position: relative;
    z-index: 1;
}

.info-mini {
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(106, 81, 232, 0.2));
}

.info-mini:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 2px 4px rgba(106, 81, 232, 0.4));
}

.solana {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(106, 81, 232, 0.5);
    position: relative;
}

.solana::after {
    content: 'SOLANA';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #6A51E8 0%, #C264F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    filter: blur(2px);
    opacity: 0.5;
}

/* Responsive Widget Styles */
@media (max-width: 768px) {
    .widget-wrapper {
        max-width: 100%;
        padding: 0 0.75rem;
        margin: 1rem auto;
    }
    
    .wallet-box {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }
    
    .wallet-box::before {
        border-radius: 16px 16px 0 0;
    }
    
    .widget-title.text-capitalize {
        font-size: 1rem;
        margin-bottom: 0.25rem !important;
    }
    
    .text-purple.font-15 {
        font-size: 1.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .counter {
        margin: 0.75rem 0 !important;
    }
    
    .inner-counter {
        padding: 0.5rem 0 !important;
    }
    
    .counter .d-flex.gap-2 {
        gap: 0.5rem !important;
    }
    
    .time-card {
        min-width: 45px;
        max-width: 55px;
        padding: 0.3rem 0.2rem;
        border-radius: 8px;
    }
    
    .time-card .value {
        font-size: 1.375rem;
        min-height: 1.375rem;
    }
    
    .time-card .indicator {
        font-size: 0.5625rem;
        margin-bottom: 0.15rem;
        letter-spacing: 0.2px;
        line-height: 1.1;
    }
    
    .purchase-info {
        padding: 0.4rem 0.35rem;
        margin: 0.5rem 0 !important;
        border-radius: 8px;
        gap: 0.5rem !important;
    }
    
    .purchase-info > div {
        padding: 0.2rem 0.3rem;
        border-radius: 5px;
    }
    
    .purchase-info .font-11 {
        font-size: 0.625rem !important;
    }
    
    .purchase-info img {
        width: 12px !important;
        height: 12px !important;
    }
    
    .swapArea {
        margin-top: 0.5rem !important;
    }
    
    .swapArea .btn {
        padding: 0.6rem 0.9rem;
        font-size: 0.8125rem;
    }
    
    .buy-btn {
        font-size: 0.9375rem !important;
        padding: 0.75rem 1rem !important;
    }
    
    .swapArea .mt-1 {
        margin-top: 0.5rem !important;
    }
    
    .swapArea .font-14 {
        font-size: 0.75rem !important;
    }
    
    .swapArea .font-11 {
        font-size: 0.625rem !important;
    }
    
    .poweredByIcon {
        height: 16px !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .widget-wrapper {
        padding: 0 0.5rem;
    }
    
    .wallet-box {
        padding: 1rem 0.875rem;
        border-radius: 14px;
    }
    
    .wallet-box::before {
        border-radius: 14px 14px 0 0;
    }
    
    .widget-title.text-capitalize {
        font-size: 0.9375rem;
    }
    
    .text-purple.font-15 {
        font-size: 1.125rem !important;
    }
    
    .counter .d-flex.gap-2 {
        gap: 0.4rem !important;
    }
    
    .time-card {
        min-width: 40px;
        max-width: 50px;
        padding: 0.25rem 0.15rem;
    }
    
    .time-card .value {
        font-size: 1.25rem;
        min-height: 1.25rem;
    }
    
    .time-card .indicator {
        font-size: 0.5rem;
    }
    
    .purchase-info {
        padding: 0.35rem 0.3rem;
        flex-direction: column;
        gap: 0.4rem !important;
    }
    
    .purchase-info > div {
        width: 100%;
        justify-content: center !important;
    }
    
    .swapArea .btn {
        padding: 0.55rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .buy-btn {
        font-size: 0.875rem !important;
        padding: 0.65rem 0.9rem !important;
    }
}

/* Menu Section */
.menu-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
}

.menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.menu img {
    width: 50px;
    height: 50px;
}

.menu div {
    font-size: 0.875rem;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .menu-section {
        margin-top: 2rem;
        gap: 0.75rem;
    }
    
    .menu {
        padding: 0.75rem;
        gap: 0.4rem;
    }
    
    .menu img {
        width: 40px;
        height: 40px;
    }
    
    .menu div {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .menu-section {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .menu {
        padding: 0.6rem;
        gap: 0.3rem;
    }
    
    .menu img {
        width: 35px;
        height: 35px;
    }
    
    .menu div {
        font-size: 0.6875rem;
    }
}

/* About Section */
.modalFrame {
    background-image: url('../images/modal-frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .modalFrame {
        background-image: url('../images/modal-frame-mob.png');
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .modalFrame .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1.5rem !important;
    }
    
    .modalFrame .d-lg-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .modalFrame .d-lg-flex > * {
        width: 100%;
    }
    
    .modalFrame .about-image {
        max-width: 200px;
        width: auto;
        margin: 0 auto;
        order: 1;
    }
    
    .modalFrame .mwx-492 {
        max-width: 100%;
        order: 2;
    }
    
    .modalFrame .section-desc {
        font-size: 0.875rem;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 1rem !important;
    }
    
    .modalFrame .buyNow {
        font-size: 0.875rem;
        padding: 0.625rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .modalFrame .about-bee-img,
    .modalFrame .about-right-img {
        display: none;
    }
}

.inner-info {
    position: relative;
    z-index: 2;
}

.mwx-492 {
    max-width: 492px;
    margin: 0 auto;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.buyNow {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #6A51E8, #C264F4);
    color: #ffffff;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.buyNow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(106, 81, 232, 0.4);
}

.about-image {
    max-width: 300px;
    height: auto;
    flex-shrink: 0;
}

.about-bee-img,
.about-right-img {
    max-width: 200px;
    height: auto;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-right-img {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .modalFrame {
        padding: 1.25rem 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .modalFrame .section-title {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 1.25rem !important;
    }
    
    .modalFrame .about-image {
        max-width: 180px;
    }
    
    .modalFrame .section-desc {
        font-size: 0.8125rem;
        line-height: 1.4;
        margin-bottom: 0.875rem !important;
    }
    
    .modalFrame .buyNow {
        font-size: 0.8125rem;
        padding: 0.5rem 1.25rem;
    }
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.list-info {
    list-style: none;
    padding: 0;
}

.list-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.list-info img {
    width: 20px;
    height: 20px;
}

/* Features Section */
.features-wrap {
    position: relative;
    margin-top: 2rem;
}

.honey-bee-token,
.bee-left {
    display: none !important;
}

.inner-info {
    position: relative;
    z-index: 2;
}

.keyFrame {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(106, 81, 232, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.keyFrame:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 81, 232, 0.2);
}

.key-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6A51E8;
    margin-bottom: 0.5rem;
}

.key-desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

.key-character {
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Trading Bots */
.table-wraper {
    position: relative;
    margin-top: 2rem;
}

.bots-top {
    width: 100%;
    margin-bottom: 1rem;
}

.table-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    min-width: 800px;
}

table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    background: rgba(106, 81, 232, 0.1);
    border-bottom: 2px solid #6A51E8;
}

table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-yes img,
.icon-no img {
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

/* Roadmap */
.roadmap-container {
    position: relative;
    padding: 2rem 0;
}

.mwx-620 {
    max-width: 620px;
}

.mwx-680 {
    max-width: 680px;
}

.mwx-650 {
    max-width: 650px;
}

.box {
    background-image: url('../images/roadmap-frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
}

.box.active-box {
    background: linear-gradient(135deg, #6A51E8, #C264F4);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(106, 81, 232, 0.3);
}

.box .title {
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: inherit;
}

.box h3.title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.box ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.box li {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.arrow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-width: 60px;
}

.top-arrow,
.middle-arrow,
.bottom-arrow {
    width: 60px;
    height: auto;
}

.ant-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: auto;
}

/* Tokenomics */
.content {
    position: relative;
    width: 100%;
}

.character {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: auto;
    z-index: 2;
}

.list-wrap {
    margin-bottom: 1rem;
}

.percentage {
    font-size: 1.25rem;
    font-weight: 700;
    min-width: 60px;
    color: #1a1a2e;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.token-detail {
    text-align: center;
    margin-bottom: 1.5rem;
}

.token-detail h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.token-detail p {
    font-size: 1rem;
    color: #333;
}

.font-bold {
    font-weight: 700;
    font-size: 1.5rem;
    color: #6A51E8;
}

.tokenomics-chart {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

/* How To Buy */
.bottomBg {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
}

.smallFrame {
    background-image: url('../images/modal-frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    max-width: 500px;
}

@media (max-width: 768px) {
    .smallFrame {
        background-image: url('../images/modal-frame-mob.png');
    }
}

.closeBtn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
}

.blackFrame {
    background: #0f0f1e;
    border-radius: 15px;
    min-height: 400px;
    width: 100%;
    max-width: 500px;
}

.carosalHolder {
    padding: 2rem;
    min-height: 400px;
}

/* FAQ */
.contentWrap {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.character-wrapper {
    text-align: center;
}

.faq .list {
    margin-bottom: 1.5rem;
    background-image: url('../images/faq-frame.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq .list.active {
    background-image: url('../images/faq-open-frame.png');
}

.faq .list .title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #6A51E8;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.faq .list .desc {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.8;
    display: none;
}

.faq .list.active .desc {
    display: block;
}

/* Section Titles */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.section-key-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a2e;
}

.section-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
}

/* Audit Icons */
.audit-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.audit-icons .icon {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.audit-icons .icon:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .banner.position-relative {
        min-height: auto;
        padding: 1.5rem 0;
    }
    
    .leftSec {
        margin-bottom: 1.5rem;
    }
    
    .rightSec {
        margin-bottom: 1rem;
    }
    
    .rightSec .logo {
        max-width: 280px;
        width: 100%;
        height: auto;
    }
    
    .banner-desc {
        font-size: 0.875rem !important;
        letter-spacing: 1px;
        margin-top: 0.75rem;
        padding: 0 1rem;
    }
    
    .audit-icons {
        margin-bottom: 1rem;
        gap: 0.75rem;
    }
    
    .audit-icons .icon {
        height: 50px;
    }
    
    .menu-section {
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .menu img {
        width: 40px;
        height: 40px;
    }
}

