/* Digital Assets Hero Section */
.digital-hero {
    position: relative;
    padding: 180px 0 100px 0;
    overflow: hidden;
}

.digital-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Images/digital-assets/digitalbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.digital-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.digital-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.digital-hero-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.digital-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.digital-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-enable-digital {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enable-digital:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-view-assets {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-assets:hover {
    background-color: white;
    color: #1a1a1a;
}

.digital-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.digital-hero-image {
    width: 120%;
    max-width: 1000px;
    height: auto;
    animation: bounceFloat 3s ease-in-out infinite;
}

@keyframes bounceFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Gateway Section */
.gateway-section {
    padding: 80px 0;
    background-color: #fff;
}

.gateway-title {
    font-family: 'Cairo', sans-serif;
    font-size: 110px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

.gateway-title .text-orange {
    color: #FF6B35;
    display: block;
    text-align: right;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .digital-hero {
        padding: 140px 0 80px 0;
    }

    .digital-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .digital-hero-title {
        font-size: 42px;
    }

    .digital-hero-subtitle {
        font-size: 16px;
    }

    .gateway-title {
        font-size: 48px;
    }
}

@media screen and (max-width: 640px) {
    .digital-hero {
        padding: 120px 0 60px 0;
    }

    .digital-hero-title {
        font-size: 32px;
    }

    .digital-hero-subtitle {
        font-size: 14px;
    }

    .digital-hero-buttons {
        flex-direction: column;
    }

    .btn-enable-digital,
    .btn-view-assets {
        width: 100%;
        text-align: center;
    }

    .gateway-title {
        font-size: 36px;
    }

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

@media screen and (max-width: 480px) {
    .digital-hero-title {
        font-size: 28px;
    }

    .digital-hero-subtitle {
        font-size: 13px;
    }

    .gateway-title {
        font-size: 28px;
    }
}

/* Digital Features Section */
.digital-features-section {
    padding: 80px 0;
    background-color: #fff;
}

.digital-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.digital-feature-card {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    min-height: 350px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.digital-feature-card:hover .coin-icon,
.digital-feature-card:hover .mobile-image,
.digital-feature-card:hover .dashboard-image {
    transform: scale(1.1);
}

.coin-icon,
.mobile-image,
.dashboard-image {
    transition: transform 0.4s ease;
}

/* On Ramp Card */
.onramp-card {
    background-image: url('Images/digital-assets/digital/onrampbg.svg');
    background-size: cover;
    background-position: center;
}

.card-coins {
    display: flex;
    padding: 60px 24px;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 300px;
    flex: 1;
}

.coin-icon {
    position: absolute;
}

.coin-icon:nth-child(1) {
    /* Bitcoin - center and larger */
    width: 300px;
    height: 300px;
    z-index: 3;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
}

.digital-feature-card:hover .coin-icon:nth-child(1) {
    transform: translate(-50%, -50%) scale(1.1);
}

.coin-icon:nth-child(2) {
    /* Cosmos - behind on left, more centered */
    width: 200px;
    height: 200px;
    z-index: 1;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
}

.digital-feature-card:hover .coin-icon:nth-child(2) {
    transform: translateY(-50%) scale(1.1);
}

.coin-icon:nth-child(3) {
    /* Ethereum - behind on right, more centered */
    width: 200px;
    height: 200px;
    z-index: 2;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
}

.digital-feature-card:hover .coin-icon:nth-child(3) {
    transform: translateY(-50%) scale(1.1);
}

/* Stablecoin Card */
.stablecoin-card {
    background-image: url('Images/digital-assets/digital/stablecoinbg.svg');
    background-size: cover;
    background-position: center;
}

/* Business Card */
.business-card {
    background-image: url('Images/digital-assets/digital/businessbg.svg');
    background-size: cover;
    background-position: center;
}

/* Dashboard Card */
.dashboard-card {
    background-image: url('Images/digital-assets/digital/onedashbg.svg');
    background-size: cover;
    background-position: center;
}

.card-mobile-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 24px 20px 24px;
    flex: 1;
}

.mobile-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    transform: scale(1.3);
}

.digital-feature-card:hover .mobile-image {
    transform: scale(1.4);
}

.card-dashboard-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 24px 20px 24px;
    flex: 1;
}

.dashboard-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
}

.card-text-content {
    margin: 0;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0;
}

.feature-card-title {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.feature-card-description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.digital-features-cta {
    text-align: center;
}

.btn-talk-sales {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 18px 40px;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-talk-sales:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Account Opening Section */
.account-opening-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-opening-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1800px;
    height: auto;
    z-index: 1;
}

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

.swiss-logo {
    width: 100%;
    max-width: 1100px;
    height: auto;
    display: block;
}

/* Video Thumbnail Container */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-thumbnail-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.play-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.account-video {
    width: 100%;
    max-width: 1100px;
    border-radius: 16px;
}

/* Multi-Currency Section */
.multi-currency-section {
    position: relative;
    padding: 150px 0;
    background-image: url('Images/payment/currencybg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 600px;
}

.multi-currency-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.multi-currency-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.multi-currency-description {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn-fx-overview {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fx-overview:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Coin positioning */
.coin-ethereum {
    position: absolute;
    top: 5%;
    left: 2%;
    width: 130px;
    height: 130px;
    z-index: 1;
}

.coin-dollar {
    position: absolute;
    top: 8%;
    right: 25%;
    width: 120px;
    height: 120px;
    z-index: 1;
}

.coin-solana {
    position: absolute;
    bottom: 15%;
    left: 20%;
    width: 115px;
    height: 115px;
    z-index: 1;
}

.coin-bitcoin {
    position: absolute;
    bottom: 5%;
    right: 2%;
    width: 140px;
    height: 140px;
    z-index: 1;
}

/* Secure Digital Assets Section */
.secure-assets-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.ellipse-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: auto;
    z-index: 1;
}

.secure-assets-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.secure-assets-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.secure-assets-title {
    font-family: 'Cairo', sans-serif;
    font-size: 72px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.btn-compliance {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-compliance:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.secure-assets-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-image {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Stablecoin Conversion Section */
.stablecoin-conversion-section {
    padding: 100px 0;
    background-image: url('Images/digital-assets/stablecoinbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stablecoin-conversion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.stablecoin-left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.example-categories-box {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border-bottom: 3px solid #FF6B35;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    z-index: 2;
}

.example-title {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: 0.5px;
}

.example-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.example-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}

.arrow-icon {
    color: #FF6B35;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.stablecoin-box-image {
    width: 100%;
    max-width: 550px;
    height: auto;
    position: relative;
    z-index: 1;
}

.stablecoin-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stablecoin-title {
    font-family: 'Cairo', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.stablecoin-description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 0 60px 0;
}

.stablecoin-note {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.note-title {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.note-text {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

.btn-view-list {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-view-list:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Why Swiss Payments Crypto Section */
.why-crypto-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-ellipse-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: auto;
    z-index: 1;
}

.why-crypto-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-crypto-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-crypto-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.why-crypto-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-crypto-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}

.why-arrow-icon {
    color: #FF6B35;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
}

.btn-risk-policy {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-risk-policy:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.why-crypto-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiss-person-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
}

/* Pay And Get Paid With Tokens Section */
.pay-tokens-section {
    padding: 100px 0;
    background-color: #16232A;
    background-image: url('Images/digital-assets/paygetbg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pay-tokens-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.pay-tokens-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pay-tokens-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pay-tokens-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.pay-tokens-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pay-tokens-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.pay-tokens-description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
}

.btn-pay-tokens {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-pay-tokens:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

/* Future of Trading Section */
.future-trading-section {
    padding: 100px 0;
    background: #ffffff;
}

.future-trading-title {
    font-family: 'Cairo', sans-serif;
    font-size: 64px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 60px 0;
}

.future-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.future-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.future-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.future-card:hover .future-card-bg {
    transform: scale(1.1);
}

.future-card-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    margin: 24px;
    max-width: 380px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}

.future-card:hover .future-card-content {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.95);
}

.future-card-title {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.future-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.future-card-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
}

.future-arrow {
    color: #FF6B35;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.future-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-enable-assets {
    background-color: #FF6B35;
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enable-assets:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.btn-talk-expert {
    background-color: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-talk-expert:hover {
    background-color: #1a1a1a;
    color: white;
    transform: translateY(-2px);
}

/* Explore Tokens Section */
.explore-tokens-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.explore-tokens-title {
    font-family: 'Cairo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 60px 0;
}

.tokens-slider {
    overflow: hidden;
    width: 100%;
}

.tokens-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
}

.token-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Transparent Fee Section */
.transparent-fee-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.transparent-fee-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.transparent-fee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.transparent-fee-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
}

.transparent-fee-title {
    font-family: 'Cairo', sans-serif;
    font-size: 56px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.transparent-fee-description {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.transparent-fee-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transparent-fee-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
}

.fee-arrow {
    color: #FF6B35;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.btn-crypto-fee {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-crypto-fee:hover {
    background-color: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Responsive Design for Multi-Currency */
@media screen and (max-width: 968px) {
    .account-opening-section {
        padding: 80px 0;
    }

    .account-opening-bg {
        max-width: 1500px;
    }

    .swiss-logo {
        max-width: 900px;
    }

    .secure-assets-section {
        padding: 80px 0;
    }

    .secure-assets-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .secure-assets-title {
        font-size: 42px;
    }

    .ellipse-bg {
        width: 400px;
    }

    .flag-image {
        max-width: 400px;
    }

    .stablecoin-conversion-section {
        padding: 80px 0;
    }

    .stablecoin-conversion-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stablecoin-title {
        font-size: 42px;
    }

    .stablecoin-box-image {
        max-width: 450px;
    }

    .example-categories-box {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .stablecoin-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .example-title {
        font-size: 13px;
    }

    .example-item {
        font-size: 14px;
    }

    .why-crypto-section {
        padding: 80px 0;
    }

    .why-crypto-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-crypto-title {
        font-size: 42px;
    }

    .why-ellipse-bg {
        width: 400px;
    }

    .swiss-person-image {
        max-width: 400px;
    }

    .pay-tokens-section {
        padding: 80px 0;
    }

    .pay-tokens-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pay-tokens-title {
        font-size: 42px;
    }

    .pay-tokens-image {
        max-width: 350px;
    }

    .future-trading-section {
        padding: 80px 0;
    }

    .future-trading-title {
        font-size: 48px;
    }

    .future-cards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .future-card {
        min-height: 450px;
    }

    .explore-tokens-section {
        padding: 60px 0;
    }

    .explore-tokens-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .token-icon {
        width: 60px;
        height: 60px;
    }

    .transparent-fee-section {
        padding: 80px 0;
        background-size: contain;
        background-position: bottom right;
    }

    .transparent-fee-title {
        font-size: 42px;
    }

    .transparent-fee-left {
        max-width: 100%;
    }

    .multi-currency-section {
        padding: 80px 0;
    }

    .multi-currency-title {
        font-size: 42px;
    }

    .multi-currency-description {
        font-size: 16px;
    }

    .coin-ethereum {
        width: 70px;
        height: 70px;
    }

    .coin-dollar {
        width: 65px;
        height: 65px;
    }

    .coin-solana {
        width: 60px;
        height: 60px;
    }

    .coin-bitcoin {
        width: 80px;
        height: 80px;
    }

    .digital-features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-card-title {
        font-size: 22px;
    }

    .feature-card-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 640px) {
    .account-opening-section {
        padding: 60px 0;
    }

    .account-opening-bg {
        max-width: 1300px;
    }

    .swiss-logo {
        max-width: 700px;
    }

    .secure-assets-section {
        padding: 60px 0;
    }

    .secure-assets-title {
        font-size: 32px;
    }

    .ellipse-bg {
        width: 300px;
    }

    .flag-image {
        max-width: 300px;
    }

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

    .stablecoin-conversion-section {
        padding: 60px 0;
    }

    .stablecoin-title {
        font-size: 32px;
    }

    .stablecoin-description {
        font-size: 16px;
    }

    .stablecoin-box-image {
        max-width: 280px;
    }

    .example-categories-box {
        max-width: 100%;
    }

    .example-title {
        font-size: 12px;
    }

    .example-item {
        font-size: 13px;
        gap: 10px;
    }

    .arrow-icon {
        font-size: 16px;
    }

    .btn-view-list {
        width: 100%;
        text-align: center;
    }

    .why-crypto-section {
        padding: 60px 0;
    }

    .why-crypto-title {
        font-size: 32px;
    }

    .why-crypto-item {
        font-size: 16px;
    }

    .why-ellipse-bg {
        width: 300px;
    }

    .swiss-person-image {
        max-width: 300px;
    }

    .btn-risk-policy {
        width: 100%;
        text-align: center;
    }

    .pay-tokens-section {
        padding: 60px 0;
    }

    .pay-tokens-title {
        font-size: 32px;
    }

    .pay-tokens-description {
        font-size: 14px;
    }

    .pay-tokens-image {
        max-width: 280px;
    }

    .btn-pay-tokens {
        width: 100%;
        text-align: center;
    }

    .future-trading-section {
        padding: 60px 0;
    }

    .future-trading-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .future-cards-grid {
        margin-bottom: 40px;
    }

    .future-card {
        min-height: 400px;
    }

    .future-card-content {
        padding: 24px;
        margin: 16px;
    }

    .btn-enable-assets,
    .btn-talk-expert {
        width: 100%;
    }

    .explore-tokens-title {
        font-size: 32px;
    }

    .token-icon {
        width: 50px;
        height: 50px;
    }

    .transparent-fee-section {
        padding: 60px 0;
    }

    .transparent-fee-title {
        font-size: 32px;
    }

    .transparent-fee-description,
    .transparent-fee-item {
        font-size: 14px;
    }

    .btn-crypto-fee {
        width: 100%;
        text-align: center;
    }

    .multi-currency-section {
        padding: 60px 0;
    }

    .multi-currency-title {
        font-size: 32px;
    }

    .multi-currency-description {
        font-size: 14px;
    }

    .btn-fx-overview {
        width: 100%;
    }

    .coin-ethereum {
        width: 50px;
        height: 50px;
        top: 3%;
        left: 3%;
    }

    .coin-dollar {
        width: 45px;
        height: 45px;
        top: 5%;
        right: 5%;
    }

    .coin-solana {
        width: 40px;
        height: 40px;
        bottom: 10%;
        left: 5%;
    }

    .coin-bitcoin {
        width: 55px;
        height: 55px;
        bottom: 8%;
        right: 3%;
    }

    .digital-features-section {
        padding: 60px 0;
    }

    .digital-features-grid {
        gap: 24px;
        margin-bottom: 40px;
    }

    .feature-card-title {
        font-size: 20px;
        margin: 20px 20px 10px 20px;
    }

    .feature-card-description {
        font-size: 14px;
        margin: 0 20px 20px 20px;
    }

    .btn-talk-sales {
        width: 100%;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .account-opening-section {
        padding: 50px 0;
    }

    .account-opening-bg {
        max-width: 1000px;
    }

    .swiss-logo {
        max-width: 500px;
    }

    .secure-assets-title {
        font-size: 28px;
    }

    .ellipse-bg {
        width: 250px;
    }

    .flag-image {
        max-width: 250px;
    }

    .stablecoin-title {
        font-size: 28px;
    }

    .stablecoin-description {
        font-size: 14px;
    }

    .note-title {
        font-size: 16px;
    }

    .note-text {
        font-size: 13px;
    }

    .stablecoin-box-image {
        max-width: 240px;
    }

    .example-categories-box {
        padding: 20px;
    }

    .example-list {
        gap: 14px;
    }

    .why-crypto-title {
        font-size: 28px;
    }

    .why-crypto-item {
        font-size: 14px;
    }

    .why-ellipse-bg {
        width: 250px;
    }

    .swiss-person-image {
        max-width: 250px;
    }

    .pay-tokens-title {
        font-size: 28px;
    }

    .pay-tokens-image {
        max-width: 240px;
    }

    .future-trading-title {
        font-size: 32px;
    }

    .future-card {
        min-height: 350px;
    }

    .future-card-content {
        padding: 20px;
        margin: 12px;
    }

    .future-card-title {
        font-size: 20px;
    }

    .future-card-item {
        font-size: 13px;
    }

    .explore-tokens-title {
        font-size: 28px;
    }

    .transparent-fee-title {
        font-size: 28px;
    }
}
