
/*melbourne-section*/
.melbourne-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
.melbourne-section .section {
    padding: 0px 0 50px;
    position: relative;
    opacity: 1; 
    transform: translateY(0px); 
    transition: opacity 0.6s, 
    transform 0.6s;
}

.melbourne-section .section:nth-child(even) {
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.melbourne-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.melbourne-section .section-title {
    font-size: 33px;
    font-weight: 700;
    color: #3C0753;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.melbourne-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6c2c, #910A67);
    border-radius: 2px;
}

.melbourne-section .section-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
}

/* Why Choose Section */
.melbourne-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.melbourne-section .benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(60, 7, 83, 0.1);
    border: 1px solid rgba(145, 10, 103, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.melbourne-section .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #3C0753, #ff6c2c);
}

.melbourne-section .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 7, 83, 0.15);
}

.melbourne-section .benefit-card strong {
    color: #720455;
    font-size: 1.3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

/* Features Section */
.melbourne-section .features-container {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(145, 10, 103, 0.1);
}

.melbourne-section .features-container .features-container-title{
    color: #3C0753; 
    font-size: 1.8rem; 
    margin-bottom: 20px;
}

.melbourne-section .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 25px;
    list-style: none;
    margin-top: 40px;
}

.melbourne-section .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-left: 4px solid #ff6c2c;
    transition: all 0.3s ease;
}

.melbourne-section .features-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 108, 44, 0.2);
}

.melbourne-section .feature-icon {
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #720455, #910A67);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Use Cases Section */
.melbourne-section .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.melbourne-section .use-case-card {
    background: linear-gradient(135deg, #3C0753 0%, #720455 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.melbourne-section .use-case-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 108, 44, 0.1) 0%, transparent 70%);
    transition: all 0.3s ease;
}

.melbourne-section .use-case-card:hover::before {
    top: -60%;
    right: -60%;
}

.melbourne-section .use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(60, 7, 83, 0.3);
}

.melbourne-section .use-case-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff6c2c;
    position: relative;
    z-index: 2;
}

.melbourne-section .use-case-card p {
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

/* Advantages Section */
.melbourne-section .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    margin-top: 50px;
}

.melbourne-section .advantage-item {
    text-align: center;
    padding: 15px;
}

.melbourne-section .advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6c2c, #910A67);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 108, 44, 0.3);
}

.melbourne-section .advantage-item h3 {
    font-size: 1.5rem;
    color: #3C0753;
    margin-bottom: 15px;
    font-weight: 600;
}

/* FAQ Section */
.melbourne-section .faq-container {
    margin: 0 auto;
}

.melbourne-section .faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(60, 7, 83, 0.08);
    border: 1px solid rgba(145, 10, 103, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.melbourne-section .faq-item:hover {
    box-shadow: 0 10px 25px rgba(60, 7, 83, 0.12);
}

.melbourne-section .faq-question {
    background: linear-gradient(135deg, #3C0753 0%, #720455 100%);
    color: white;
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    cursor: pointer;
    position: relative;
}

/* .melbourne-section .faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ff6c2c;
    transition: transform 0.3s ease;
} */

.melbourne-section .faq-answer {
    padding: 30px;
    color: #555;
    line-height: 1.8;
    border-top: 2px solid #f0f0f0;
}

/* CTA Section */
.melbourne-section .cta-section {
    background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.melbourne-section .cta-section::before {
    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 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.melbourne-section .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6c2c, #ff8c4c);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 108, 44, 0.3);
    position: relative;
    z-index: 2;
}

.melbourne-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 108, 44, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {

    .melbourne-section .section-title {
        font-size: 2.2rem;
    }

    .melbourne-section .benefits-grid,
    .melbourne-section .use-cases-grid,
    .melbourne-section .advantages-grid {
        grid-template-columns: 1fr;
    }

    .melbourne-section .features-container {
        padding: 30px 20px;
    }

    .melbourne-section .features-list {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.melbourne-section .section {
    animation: fadeInUp 0.6s ease-out;
}
/*melbourne-section*/


/*nairobi-section*/
.nairobi-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header with animated gradient */
        .nairobi-section .hero-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .nairobi-section .hero-section::before {
            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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.03"/><circle cx="75" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.02"/><circle cx="25" cy="75" r="1" fill="white" opacity="0.04"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

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

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

        .nairobi-section .hero-title {
            font-size: 30px;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 0%, #ff6c2c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .nairobi-section .hero-subtitle {
            font-size: 18px;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        /* Card-based sections */
        .nairobi-section .content-section {
            padding: 50px 0;
            position: relative;
        }

        .nairobi-section .section-card {
            background: white;
            border-radius: 24px;
            padding: 30px 50px;
            margin-bottom: 35px;
            box-shadow: 0 20px 60px rgba(60, 7, 83, 0.08);
            border: 1px solid rgba(60, 7, 83, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .nairobi-section .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
            border-radius: 24px 24px 0 0;
        }

        .nairobi-section .section-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(60, 7, 83, 0.15);
        }

        .nairobi-section .section-title {
            font-size: 30px;
            font-weight: 700;
            color: #3C0753;
            margin-bottom: 2rem;
            position: relative;
        }

        .nairobi-section .section-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            color: #720455;
            margin: 3rem 0 1.5rem;
            position: relative;
        }

        .nairobi-section .section-subtitle::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 3px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        /* Enhanced lists */
        .nairobi-section .feature-list {
            list-style: none;
            margin: 2rem 0;
        }

        .nairobi-section .feature-list li {
            position: relative;
            padding: 1rem 0 1rem 3rem;
            border-bottom: 1px solid rgba(60, 7, 83, 0.1);
            transition: all 0.3s ease;
        }

        .nairobi-section .feature-list li:hover {
            padding-left: 3.5rem;
            background: rgba(255, 108, 44, 0.02);
            border-radius: 12px;
            border-bottom-color: transparent;
        }

        .nairobi-section .feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 1rem;
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, #ff6c2c, #910A67);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .nairobi-section .feature-list li:hover::before {
            transform: scale(1.1) rotate(45deg);
        }

        .nairobi-section .feature-list li b {
            color: #3C0753;
            font-weight: 700;
        }

        /* Numbered sections */
        .nairobi-section .numbered-section {
            counter-reset: section-counter;
        }

        .nairobi-section .numbered-item {
            counter-increment: section-counter;
            position: relative;
            padding-left: 80px;
            margin-bottom: 3rem;
        }

        .nairobi-section .numbered-item::before {
            content: counter(section-counter, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3C0753, #720455);
            color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 8px 30px rgba(60, 7, 83, 0.3);
        }
        
        .nairobi-section .explore-content{
            color: #3C0753; 
            font-weight: 700; 
            margin: 3rem 0 1rem;
        }

        .nairobi-section .numbered-item h3 {
            font-size: 22px;
            color: #720455;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        /* Target audience cards */
        .nairobi-section .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin: 3rem 0;
        }

        .nairobi-section .audience-card {
            background: linear-gradient(135deg, rgba(255, 108, 44, 0.05), rgba(145, 10, 103, 0.05));
            border: 2px solid rgba(60, 7, 83, 0.1);
            border-radius: 16px;
            padding: 18px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nairobi-section .audience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
        }

        .nairobi-section .audience-card:hover {
            transform: translateY(-5px);
            border-color: #ff6c2c;
            box-shadow: 0 15px 40px rgba(255, 108, 44, 0.2);
        }

        .nairobi-section .audience-card h3 {
            font-weight:700;
            color: #3C0753;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        /* CTA Section */
        .nairobi-section .cta-section {
            background: linear-gradient(135deg, #910A67 0%, #3C0753 100%);
            color: white;
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 4rem 0;
        }

        .nairobi-section .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 108, 44, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

        .nairobi-section .cta-content {
            position: relative;
            z-index: 2;
        }

        .nairobi-section .cta-title {
            font-size: 35px;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #ff6c2c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .nairobi-section .cta-content-p {
            font-size: 1.2rem; 
            margin-bottom: 2rem; 
            opacity: 0.95;
        }
        
        .nairobi-section .cta-content-pp {
            margin-top: 1rem; 
            opacity: 0.8;
        }

        .nairobi-section .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6c2c, #910A67);
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 108, 44, 0.3);
            position: relative;
            overflow: hidden;
        }

        .nairobi-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .nairobi-section .cta-button:hover::before {
            left: 100%;
        }

        .nairobi-section .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 108, 44, 0.4);
        }

        /* FAQ Section */
        .nairobi-section .faq-container {
            margin-top: 3rem;
        }

        .nairobi-section .faq-item {
            background: white;
            border: 2px solid rgba(60, 7, 83, 0.1);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .nairobi-section .faq-item:hover {
            border-color: #ff6c2c;
            box-shadow: 0 8px 25px rgba(255, 108, 44, 0.1);
        }

        .nairobi-section .faq-question h3{
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05), rgba(255, 108, 44, 0.05));
            padding: 1.5rem;
            font-weight: 700;
            color: #3C0753;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(60, 7, 83, 0.1);
        }

        .nairobi-section .faq-answer {
            padding: 1.5rem;
            color: #555;
            line-height: 1.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .nairobi-section .section-card {
                padding: 40px 30px;
                border-radius: 16px;
            }

            .nairobi-section .numbered-item {
                padding-left: 0;
                text-align: center;
            }

            .nairobi-section .numbered-item::before {
                position: relative;
                margin: 0 auto 1rem;
            }

            .nairobi-section .audience-grid {
                grid-template-columns: 1fr;
            }

            .nairobi-section .cta-section {
                padding: 40px 30px;
            }

            .nairobi-section .section-subtitle::before {
                display: none;
            }
        }
/*nairobi-section*/



.bogota-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .bogota-section .hero-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .bogota-section .hero-section::before {
            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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .bogota-section .hero-section h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #ff6c2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 108, 44, 0.3)); }
            to { filter: drop-shadow(0 0 30px rgba(255, 108, 44, 0.5)); }
        }

        .bogota-section .hero-section p {
            font-size: 18px;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.5s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bogota-section .main-content {
            padding: 50px 0 0;
            background: white;
            position: relative;
        }

        .bogota-section .section {
            margin-bottom: 50px;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bogota-section .section h2 {
            font-size: 35px;
            color: #3C0753;
            margin-bottom: 40px;
            position: relative;
            font-weight: 700;
        }

        .bogota-section .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        .bogota-section .advantages-list {
            display: grid;
            gap: 30px;
            margin-top: 28px;
        }

        .bogota-section .advantage-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(60, 7, 83, 0.1);
        }

        .bogota-section .advantage-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .bogota-section .advantage-item:hover::before {
            transform: scaleX(1);
        }

        .bogota-section .advantage-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(60, 7, 83, 0.2);
            border-color: rgba(255, 108, 44, 0.3);
        }

        .bogota-section .advantage-item h3 {
            color: #720455;
            font-size: 1.3rem;
            font-weight: 700;
            display: block;
            margin-bottom: 15px;
        }

        .bogota-section .advantage-item p {
            font-size: 1.1rem;
            color: #4a5568;
            margin: 0;
        }

        .bogota-section .faq-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 50px 0;
        }

        .bogota-section .faq-section h2 {
            font-size: 35px;
            color: #3C0753;
            text-align: center;
            margin-bottom: 65px;
            font-weight: 800;
            position: relative;
        }

        .bogota-section .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        .bogota-section .faq-container {
            display: grid;
            gap: 20px;
            margin: 0 auto;
        }

        .bogota-section .faq-item {
            background: white;
            border: 2px solid rgba(60, 7, 83, 0.1);
            border-radius: 16px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .bogota-section .faq-item:hover {
            border-color: #ff6c2c;
            box-shadow: 0 8px 25px rgba(255, 108, 44, 0.1);
        }

        .bogota-section .faq-question {
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05), rgba(255, 108, 44, 0.05));
            padding: 1.5rem;
            font-weight: 700;
            color: #3C0753;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(60, 7, 83, 0.1);
        }

        .bogota-section .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 108, 44, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .bogota-section .faq-item:hover .faq-question::before {
            left: 100%;
        }

        .bogota-section .faq-question h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .bogota-section .faq-answer {
                padding: 1.5rem;
                color: #555;
                line-height: 1.8;
                    max-height: max-content;
        }

        .bogota-section .faq-answer p {
            font-size: 16px;
            margin: 0;
        }

        .bogota-section .cta-section {
            background: linear-gradient(135deg, #910A67 0%, #ff6c2c 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .bogota-section .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .bogota-section .cta-content {
            position: relative;
            z-index: 2;
        }

        .bogota-section .cta-section p {
            font-size: 1.5rem;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .bogota-section .cta-button {
            display: inline-block;
            background: white;
            color: #3C0753;
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .bogota-section .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #3C0753, #720455);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .bogota-section .cta-button:hover::before {
            left: 0;
        }

        .bogota-section .cta-button:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .bogota-section .hero-section {
                padding: 60px 0;
                text-align: center;
            }
            
            .bogota-section .section h2 {
                font-size: 2rem;
            }
            
            .bogota-section .advantage-item {
                padding: 30px 25px;
            }
            
            .bogota-section .faq-section {
                padding: 60px 0;
            }
            
            .bogota-section .faq-section h2 {
                font-size: 2.2rem;
            }
            
            .bogota-section .faq-question, .faq-answer {
                padding: 25px;
            }
            
            .bogota-section .cta-section {
                padding: 60px 0;
            }
        }
/*bogota-section*/

.manila-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .manila-section .hero-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .manila-section .hero-section::before {
            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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .manila-section .hero-section h2 {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #ff6c2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: glow 3s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 108, 44, 0.3)); }
            to { filter: drop-shadow(0 0 30px rgba(255, 108, 44, 0.6)); }
        }

        .manila-section .hero-section p {
            font-size: 18px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .manila-section .section {
            padding: 50px 0;
            position: relative;
        }

        .manila-section .section:nth-child(even) {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .manila-section .section h2 {
            font-size: 30px;
            color: #3C0753;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .manila-section .section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #720455, #ff6c2c);
            border-radius: 2px;
        }

        .manila-section .section h3 {
            font-size: 1.8rem;
            color: #720455;
            margin-bottom: 25px;
        }

        .manila-section .section p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #555;
        }

        .manila-section .server-specs {
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05) 0%, rgba(114, 4, 85, 0.05) 100%);
            border-radius: 20px;
            padding: 25px;
            margin: 25px 0;
            border: 2px solid rgba(114, 4, 85, 0.1);
            transition: all 0.3s ease;
        }

        .manila-section .server-specs:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(60, 7, 83, 0.15);
            border-color: rgba(255, 108, 44, 0.3);
        }

        .manila-section .server-specs ul {
            list-style: none;
            display: grid;
            gap: 20px;
        }

        .manila-section .server-specs li {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-left: 4px solid #ff6c2c;
        }

        .manila-section .server-specs li:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .manila-section .server-specs li::before {
            content: '\f233';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #720455;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .manila-section .server-specs li b {
            padding-right: 10px;
        }

        .manila-section .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }

        .manila-section .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #720455;
            position: relative;
            overflow: hidden;
        }

        .manila-section .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #3C0753, #720455, #910A67, #ff6c2c);
            background-size: 300% 100%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .manila-section .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(60, 7, 83, 0.15);
        }

        .manila-section .feature-card h3 {
            font-weight:600;
            color: #3C0753;
            font-size: 1.3rem!important;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .manila-section .feature-card p {
            color: #666;
            font-size: 1rem;
            line-height: 1.6;
        }

        .manila-section .cta-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
        }

        .manila-section .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 108, 44, 0.1) 0%, transparent 70%);
        }

        .manila-section .cta-content {
            position: relative;
            z-index: 2;
        }

        .manila-section .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(45deg, #ff6c2c, #ff8c42);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(255, 108, 44, 0.3);
            margin-top: 20px;
        }

        .manila-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 108, 44, 0.5);
            background: linear-gradient(45deg, #ff8c42, #ff6c2c);
        }

        .manila-section .faq-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .manila-section .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .manila-section .faq-item:hover {
            box-shadow: 0 10px 30px rgba(60, 7, 83, 0.1);
        }

        .manila-section .faq-question {
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05) 0%, rgba(114, 4, 85, 0.05) 100%);
            padding: 25px 30px;
            cursor: pointer;
            position: relative;
            border-left: 4px solid #720455;
        }

        .manila-section .faq-question h3 {
            color: #3C0753;
            font-size: 1.2rem;
            margin: 0;
            padding-right: 30px;
        }

        .manila-section .faq-question::after {
            content: '\f067';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            color: #720455;
            transition: all 0.3s ease;
        }

        .manila-section .faq-question.active::after {
            content: '\f068';
            transform: translateY(-50%) rotate(180deg);
        }

        .manila-section .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .manila-section .faq-answer.active {
            padding: 25px 30px;
            max-height: max-content;
        }

        .manila-section .faq-answer p {
            color: #666;
            margin: 0;
            line-height: 1.7;
        }

        @media (max-width: 768px) {

            .manila-section .server-specs {
                padding: 25px;
            }

            .manila-section .feature-card {
                padding: 30px 20px;
            }
        }
/*manila-section*/

/*taipei-section*/
.taipei-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Section */
        .taipei-section .hero-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .taipei-section .hero-section::before {
            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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

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

        .taipei-section .hero-section h2 {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #ff6c2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        .taipei-section .hero-section p {
            font-size: 18px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        /* Features Section */
        .taipei-section .features-section {
            padding: 50px 0;
            background: white;
        }

        .taipei-section .features-section h2 {
            font-size: 30px;
            color: #3C0753;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }

        .taipei-section .features-section h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        .taipei-section .features-intro {
            text-align: center;
            font-size: 16px;
            color: #666;
            margin-left: auto;
            margin-right: auto;
        }

        .taipei-section .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 15px;
            margin-top: 3rem;
        }

        .taipei-section .feature-card {
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(60, 7, 83, 0.1);
            border: 1px solid rgba(255, 108, 44, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .taipei-section .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .taipei-section .feature-card:hover::before {
            transform: scaleX(1);
        }

        .taipei-section .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(60, 7, 83, 0.15);
        }

        .taipei-section .feature-card strong {
            color: #3C0753;
            font-size: 1.3rem;
            display: block;
            margin-bottom: 1rem;
        }

        .taipei-section .feature-card li {
            color: #555;
            line-height: 1.8;
        }

        /* CTA Section */
        .taipei-section .cta-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #e3e4e5 0%, #ffffff 100%);
            text-align: center;
        }

        .taipei-section .cta-section h2 {
            font-size: 30px;
            color: #3C0753;
            margin-bottom: 1.5rem;
        }

        .taipei-section .cta-section p {
            font-size: 16px;
            color: #666;
            margin-bottom: 1.5rem;
            margin-left: auto;
            margin-right: auto;
        }

        .taipei-section .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff6c2c, #910A67);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 108, 44, 0.3);
        }

        .taipei-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 108, 44, 0.4);
        }

        /* FAQ Section */
        .taipei-section .faq-section {
            padding: 50px 0;
            background: white;
        }

        .taipei-section .faq-section h2 {
            font-size: 30px;
            color: #3C0753;
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .taipei-section .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        .taipei-section .faq-container {
            margin: 0 auto;
            gap: 0;
        }

        .taipei-section .faq-item {
            margin-bottom: 2rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(60, 7, 83, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .taipei-section .faq-item:hover {
            box-shadow: 0 10px 30px rgba(60, 7, 83, 0.12);
        }

        .taipei-section .faq-question {
            background: linear-gradient(135deg, #3C0753, #720455);
            color: white;
            padding: 2rem;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .taipei-section .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 0;
            padding-right: 2rem;
        }
        
        .taipei-section .faq-section .faq-item.active .faq-question h3{
            color: white;
        }

        .taipei-section .faq-question::after {
            content: '+';
            position: absolute;
            right: 2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            transition: transform 0.3s ease;
        }

        .taipei-section .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
            color: white;
        }

        .taipei-section .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #fafafa;
        }

        .taipei-section .faq-item.active .faq-answer {
            padding: 2rem;
            max-height: max-content;
        }

        .taipei-section .faq-answer p {
            color: #555;
            line-height: 1.8;
            font-size: 16px;
        }

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

        .taipei-section .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .taipei-section .hero-section h2 {
                font-size: 2.5rem;
            }

            .taipei-section .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .taipei-section .feature-card {
                padding: 2rem;
            }

            .taipei-section .faq-question,
            .taipei-section .faq-answer {
                padding: 1.5rem;
            }

            .taipei-section .faq-item.active .faq-answer {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .taipei-section .hero-section {
                padding: 60px 0;
            }
        }
/*taipei-section*/


/*bangkok-section*/
.bangkok-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .bangkok-section .hero-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 30%, #910A67 70%, #ff6c2c 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .bangkok-section .hero-section::before {
            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 60 60"><defs><pattern id="hexagons" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,0 52,15 52,45 30,60 8,45 8,15" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23hexagons)"/></svg>');
            opacity: 0.4;
        }

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

        .bangkok-section .hero-section h2 {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #ffffff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease-out;
        }

        .bangkok-section .hero-section p {
            font-size: 1.15rem;
            opacity: 0.95;
            animation: slideInRight 1s ease-out 0.3s both;
            margin-bottom: 1.5rem;
        }

        .bangkok-section .hero-section p:last-child {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ff6c2c;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Industries Section */
        .bangkok-section .industries-section {
            padding: 50px 0;
            background: white;
        }

        .bangkok-section .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 20px;
        }

        .bangkok-section .industry-card {
            background: white;
            padding: 30px;
            border-radius: 24px;
            box-shadow: 0 8px 32px rgba(60, 7, 83, 0.08);
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .bangkok-section .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.02), rgba(255, 108, 44, 0.02));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .bangkok-section .industry-card:hover::before {
            opacity: 1;
        }

        .bangkok-section .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 48px rgba(60, 7, 83, 0.12);
            border-color: rgba(255, 108, 44, 0.3);
        }

        .bangkok-section .industry-card h3 {
            color: #3C0753;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .bangkok-section .industry-card h3::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #ff6c2c, #910A67);
            border-radius: 2px;
            transition: height 0.4s ease;
        }

        .bangkok-section .industry-card:hover h3::before {
            height: 100%;
        }

        .bangkok-section .industry-card p {
            color: #555;
            line-height: 1.8;
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }

        /* Why Choose Section */
        .bangkok-section .why-choose-section {
            padding: 50px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
        }

        .bangkok-section .why-choose-section h2 {
            font-size: 30px;
            color: #3C0753;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .bangkok-section .why-choose-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #ff6c2c);
            border-radius: 2px;
        }

        .bangkok-section .features-list {
            list-style: none;
            margin: 0 auto;
            display: grid;
            gap: 2rem;
        }

        .bangkok-section .feature-item {
            background: white;
            padding: 1rem;
            box-shadow: 0 6px 24px rgba(60, 7, 83, 0.06);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            position: relative;
        }

        .bangkok-section .feature-item:nth-child(odd) {
            border-left-color: #ff6c2c;
        }

        .bangkok-section .feature-item:nth-child(even) {
            border-left-color: #910A67;
        }

        .bangkok-section .feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 10px 32px rgba(60, 7, 83, 0.1);
        }

        .bangkok-section .feature-item strong {
            color: #3C0753;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .bangkok-section .cta-text {
            text-align: center;
            margin-top: 3rem;
            font-size: 1.1rem;
            color: #666;
        }

        .bangkok-section .cta-highlight {
            background: linear-gradient(135deg, #ff6c2c, #910A67);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(255, 108, 44, 0.3);
        }

        .bangkok-section .cta-highlight:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 108, 44, 0.4);
        }

        /* FAQ Section */
        .bangkok-section .faq-section {
            padding: 50px 0;
            background: white;
        }

        .bangkok-section .faq-section h2 {
            font-size: 30px;
            color: #3C0753;
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .bangkok-section .faq-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #ff6c2c, #3C0753);
            border-radius: 2px;
        }

        .bangkok-section .faq-container {
            margin: 0 auto;
            display: grid;
        }

        .bangkok-section .faq-item {
            background: white;
            border-radius: 20px;
            box-shadow: 0 6px 24px rgba(60, 7, 83, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 108, 44, 0.1);
        }

        .bangkok-section .faq-item:hover {
            box-shadow: 0 12px 36px rgba(60, 7, 83, 0.12);
            transform: translateY(-4px);
        }

        .bangkok-section .faq-question {
            background: linear-gradient(135deg, #3C0753, #720455);
            color: white;
            padding: 18px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .bangkok-section .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0;
            padding-right: 2rem;
            line-height: 1.4;
        }

        .bangkok-section .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.8rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.8rem;
            transition: transform 0.3s ease;
            font-weight: 300;
        }

        .bangkok-section .faq-item.active .faq-question::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .bangkok-section .faq-item.active .faq-question {
            background: linear-gradient(135deg, #720455, #910A67);
        }

        .bangkok-section .faq-answer {
            padding: 0 1.8rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: #fafafa;
        }

        .bangkok-section .faq-item.active .faq-answer {
            padding: 18px;
            max-height: max-content;
        }

        .bangkok-section .faq-answer p {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
        }
        
        .bangkok-section .faq-section .faq-item.active .faq-question h3{
            color: white;
        }
        
        .bangkok-section .faq-section .faq-item.active .faq-question::after{
            color: white;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .bangkok-section .hero-section h2 {
                font-size: 2.4rem;
            }

            .bangkok-section .industries-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .bangkok-section .industry-card {
                padding: 2rem;
            }

            .bangkok-section .faq-container {
                grid-template-columns: 1fr;
            }

            .bangkok-section .faq-question,
            .bangkok-section .faq-answer {
                padding: 1.5rem;
            }

            .bangkok-section .faq-item.active .faq-answer {
                padding: 1.5rem;
            }

            .bangkok-section .feature-item:hover {
                transform: translateX(4px);
            }
        }

        @media (max-width: 480px) {
            .bangkok-section .hero-section {
                padding: 80px 0;
            }

            .bangkok-section .hero-section h2 {
                font-size: 2rem;
            }

            .bangkok-section .industries-section,
            .bangkok-section .why-choose-section,
            .bangkok-section .faq-section {
                padding: 80px 0;
            }

            .bangkok-section .industry-card {
                padding: 1.5rem;
            }
        }
/*bangkok-section*/

/*lagos-section*/
.lagos-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .lagos-section .hero {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .lagos-section .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            animation: moveGrid 20s linear infinite;
            opacity: 0.3;
        }

        @keyframes moveGrid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-50px, -50px); }
        }

        .lagos-section .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .lagos-section .hero h2 {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #ff6c2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        .lagos-section .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Main Content */
        .lagos-section .main-content {
            padding: 50px 0;
        }

        .lagos-section .section {
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out;
        }

        .lagos-section .section-title {
            font-size: 30px;
            color: #3C0753;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .lagos-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #ff6c2c, #910A67);
            border-radius: 2px;
        }

        /* Industries Grid */
        .lagos-section .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .lagos-section .industry-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(60, 7, 83, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 108, 44, 0.1);
            position: relative;
            overflow: hidden;
        }

        .lagos-section .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #3C0753, #720455, #910A67, #ff6c2c);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .lagos-section .industry-card:hover::before {
            transform: translateX(0);
        }

        .lagos-section .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(60, 7, 83, 0.15);
        }

        .lagos-section .industry-card h3 {
            font-weight:700;
            color: #720455;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 10px;
        }

        /* Why Choose Section */
        .lagos-section .choose-section {
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05) 0%, rgba(255, 108, 44, 0.05) 100%);
            padding: 60px 40px;
            border-radius: 30px;
            margin: 50px 0;
        }

        .lagos-section .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .lagos-section .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .lagos-section .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3C0753, #720455);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .lagos-section .feature-content h3 {
            font-weight:700;
            color: #720455;
            display: block;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        /* CTA Section */
        .lagos-section .cta-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .lagos-section .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 108, 44, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }

        .lagos-section .cta-button {
            background: linear-gradient(45deg, #ff6c2c, #ff8c42);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            position: relative;
            z-index: 2;
        }

        .lagos-section .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 108, 44, 0.4);
        }

        /* FAQ Section */

        .lagos-section .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(60, 7, 83, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .lagos-section .faq-question {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 25px 30px;
            cursor: pointer;
            font-weight: 600;
            color: #3C0753;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .lagos-section .faq-question:hover {
            border-left-color: #ff6c2c;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        }

        .lagos-section .faq-question::after {
            content: '+';
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: #720455;
            transition: transform 0.3s ease;
        }

        .lagos-section .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .lagos-section .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .lagos-section .faq-answer.active {
            padding: 25px 30px;
            max-height: 500px;
        }

        .lagos-section .faq-answer p {
            color: #666;
            line-height: 1.8;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lagos-section .hero h2 {
                font-size: 2.5rem;
            }
            
            .lagos-section .hero p {
                font-size: 1.1rem;
            }
            
            .lagos-section .section-title {
                font-size: 2rem;
            }
            
            .lagos-section .industries-grid {
                grid-template-columns: 1fr;
            }
            
            .lagos-section .features-grid {
                grid-template-columns: 1fr;
            }
            
            .lagos-section .container {
                padding: 0 15px;
            }
        }

        /* Scroll animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lagos-section .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        
/*lagos-section*/

.lagos-explore-section .cta-section div {
        position: relative;
        z-index: 2;
    }

    .lagos-explore-section .cta-section p:first-of-type {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .lagos-explore-section .cta-section p:nth-of-type(2) {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 30px;
    }

/*ho-chi-minh-section*/
.ho-chi-minh-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .ho-chi-minh-section .hero {
            position: relative;
            padding: 50px 0;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
        }

        .ho-chi-minh-section .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 120%;
            height: 120%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 108, 44, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 108, 44, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .ho-chi-minh-section .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .ho-chi-minh-section .hero h2 {
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #ff6c2c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInFromLeft 1s ease-out;
        }

        .ho-chi-minh-section .hero p {
            font-size: 18px;
            opacity: 0.95;
            animation: slideInFromLeft 1s ease-out 0.3s both;
        }

        .ho-chi-minh-section .hero-decoration {
            position: absolute;
            top: 50%;
            right: -200px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, rgba(255, 108, 44, 0.1), rgba(145, 10, 103, 0.1));
            border-radius: 50%;
            transform: translateY(-50%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes slideInFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.5; }
            50% { transform: translateY(-50%) scale(1.1); opacity: 0.3; }
        }

        /* Main Content */
        .ho-chi-minh-section .main-content {
            padding: 80px 0;
        }

        .ho-chi-minh-section .content-section {
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .ho-chi-minh-section .content-section.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .ho-chi-minh-section .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .ho-chi-minh-section .section-header h2 {
            font-size: 30px;
            color: #3C0753;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .ho-chi-minh-section .section-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6c2c, #910A67);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* Content Grid */
        .ho-chi-minh-section .content-grid {
            display: grid;
            margin-bottom: 40px;
        }

        .ho-chi-minh-section .content-text p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 20px;
        }

        .ho-chi-minh-section .highlight-text {
            font-weight: 600;
            color: #720455;
            font-size: 1.2rem;
        }

        /* Advantages Grid */
        .ho-chi-minh-section .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .ho-chi-minh-section .advantage-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(60, 7, 83, 0.1);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 108, 44, 0.1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .ho-chi-minh-section .advantage-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .ho-chi-minh-section .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(45deg, #3C0753, #720455, #910A67, #ff6c2c);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .ho-chi-minh-section .advantage-card:hover::before {
            transform: translateX(0);
        }

        .ho-chi-minh-section .advantage-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(60, 7, 83, 0.15);
        }

        .ho-chi-minh-section .advantage-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .ho-chi-minh-section .advantage-content h3 {
            font-size: 1.4rem;
            color: #720455;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .ho-chi-minh-section .advantage-content p {
            color: #666;
            line-height: 1.6;
        }

        .ho-chi-minh-section .closing-statement {
            text-align: center;
            margin-top: 40px;
            padding: 30px;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05), rgba(255, 108, 44, 0.05));
            border-radius: 15px;
            border-left: 5px solid #ff6c2c;
        }

        .ho-chi-minh-section .closing-statement p {
            font-size: 1.2rem;
            color: #720455;
            font-weight: 500;
        }

        /* Backup Section */
        .ho-chi-minh-section .backup-section {
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.03), rgba(255, 108, 44, 0.03));
            padding: 50px 40px;
            border-radius: 30px;
        }

        .ho-chi-minh-section .backup-intro {
            margin: 0 auto 50px;
            text-align: center;
        }

        .ho-chi-minh-section .backup-intro p {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
        }

        .ho-chi-minh-section .backup-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .ho-chi-minh-section .backup-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(60, 7, 83, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            opacity: 0;
            transform: translateY(20px);
        }

        .ho-chi-minh-section .backup-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .ho-chi-minh-section .backup-card:hover {
            border-color: rgba(255, 108, 44, 0.3);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(60, 7, 83, 0.12);
        }

        .ho-chi-minh-section .backup-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .ho-chi-minh-section .backup-content h3 {
            font-size: 1.3rem;
            color: #720455;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .ho-chi-minh-section .backup-content p {
            color: #666;
            line-height: 1.6;
        }

        .ho-chi-minh-section .backup-conclusion {
            margin: 0 auto;
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(60, 7, 83, 0.08);
        }

        .ho-chi-minh-section .backup-conclusion p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        /* FAQ Section */
        .ho-chi-minh-section .faq-section {
            padding: 0;
        }
        
        .ho-chi-minh-section .faq-container {
            margin: 0 auto;
        }

        .ho-chi-minh-section .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 8px 25px rgba(60, 7, 83, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .ho-chi-minh-section  .faq-section .faq-question::after{
            content: none;
        }

        .ho-chi-minh-section .faq-item.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .ho-chi-minh-section .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

        .ho-chi-minh-section .faq-question:hover {
            border-left-color: #ff6c2c;
            background: linear-gradient(135deg, #ffffff, #f8f9fa);
        }

        .ho-chi-minh-section .faq-question span {
            font-weight: 600;
            color: #3C0753;
            flex: 1;
            margin-right: 20px;
        }
        
        .ho-chi-minh-section .faq-item.active .faq-question{
            background: white;
        }

        .ho-chi-minh-section .faq-toggle {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, #720455, #910A67);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .ho-chi-minh-section .faq-item.active .faq-toggle {
            background: linear-gradient(135deg, #ff6c2c, #910A67);
            transform: rotate(45deg);
        }

        .ho-chi-minh-section .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: white;
        }

        .ho-chi-minh-section .faq-item.active .faq-answer {
            max-height: max-content;
            padding: 25px 30px;
        }

        .ho-chi-minh-section .faq-answer p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            
            .ho-chi-minh-section .section-header h2 {
                font-size: 2.2rem;
            }
            
            .ho-chi-minh-section .advantages-grid,
            .ho-chi-minh-section .backup-features {
                grid-template-columns: 1fr;
            }
            
            .ho-chi-minh-section .container {
                padding: 0 15px;
            }
            
            
            
            .ho-chi-minh-section .backup-section {
                padding: 60px 20px;
            }
            
            .ho-chi-minh-section .faq-question {
                padding: 20px;
            }
            
            .ho-chi-minh-section .faq-question span {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            
            .ho-chi-minh-section .section-header h2 {
                font-size: 1.8rem;
            }
            
            .ho-chi-minh-section .advantage-card,
            .ho-chi-minh-section .backup-card {
                padding: 25px 20px;
            }
        }
/*ho-chi-minh-section      */
/*copenhagen-section     */
        .copenhagen-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .copenhagen-section .section {
            position: relative;
            z-index: 1;
            margin: 0 0 50px;
        }

        .copenhagen-section .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 20px;
        }

        .copenhagen-section .icon-wrapper {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 8px 32px rgba(60, 7, 83, 0.3);
            position: relative;
            overflow: hidden;
        }

        .copenhagen-section .icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .copenhagen-section .icon-wrapper:hover::before {
            left: 100%;
        }

        .copenhagen-section .section-header h2 {
            font-size: 35px;
            font-weight: 700;
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .copenhagen-section .content-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .copenhagen-section .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
        }

        .copenhagen-section .intro-text {
            font-size: 16px;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 30px;
        }

        .copenhagen-section .section-subtitle {
            font-size: 16px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 30px;
        }

        .copenhagen-section .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 24px;
            margin-bottom: 40px;
        }

        .copenhagen-section .spec-card {
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .copenhagen-section .spec-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.02) 0%, rgba(145, 10, 103, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .copenhagen-section .spec-card:hover::before {
            opacity: 1;
        }

        .copenhagen-section .spec-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(60, 7, 83, 0.15);
            border-color: rgba(145, 10, 103, 0.3);
        }

        .copenhagen-section .spec-card.full-width {
            grid-column: 1/-1;
        }

        .copenhagen-section .spec-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
        }

        .copenhagen-section .cpu-icon { background: linear-gradient(135deg, #3C0753, #720455); }
        .copenhagen-section .ram-icon { background: linear-gradient(135deg, #720455, #910A67); }
        .copenhagen-section .storage-icon { background: linear-gradient(135deg, #910A67, #ff6c2c); }
        .copenhagen-section .bandwidth-icon { background: linear-gradient(135deg, #ff6c2c, #3C0753); }
        .copenhagen-section .network-icon { background: linear-gradient(135deg, #720455, #3C0753); }

        .copenhagen-section .spec-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .copenhagen-section .spec-card p {
            color: #4a5568;
            line-height: 1.7;
        }

        .copenhagen-section .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin-bottom: 40px;
        }

        .copenhagen-section .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .copenhagen-section .feature-item:hover {
            transform: translateX(8px);
            border-color: rgba(145, 10, 103, 0.3);
            box-shadow: 0 8px 25px rgba(60, 7, 83, 0.1);
        }

        .copenhagen-section .feature-bullet {
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #720455, #910A67);
            border-radius: 50%;
            flex-shrink: 0;
            position: relative;
        }

        .copenhagen-section .feature-bullet::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: white;
            border-radius: 50%;
        }

        .copenhagen-section .highlight-box {
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05) 0%, rgba(145, 10, 103, 0.05) 100%);
            border: 1px solid rgba(145, 10, 103, 0.2);
            border-radius: 16px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .copenhagen-section .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3C0753, #720455, #910A67);
        }

        .copenhagen-section .highlight-box p {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 500;
            color: #2d3748;
        }

        .copenhagen-section .cta-section {
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            border-radius: 32px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 50px auto;
            max-width: 1500px;
        }

        .copenhagen-section .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .copenhagen-section .cta-content {
            position: relative;
            z-index: 2;
        }

        .copenhagen-section .cta-text h2 {
            font-size: 35px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .copenhagen-section .cta-text p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .copenhagen-section .cta-button-wrapper {
            display: flex;
            justify-content: center;
        }

        .copenhagen-section .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #ff6c2c;
            color: white;
            text-decoration: none;
            padding: 18px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(255, 108, 44, 0.4);
        }

        .copenhagen-section .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(255, 108, 44, 0.6);
        }

        .copenhagen-section .btn-shine {
            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.6s;
        }

        .copenhagen-section .btn:hover .btn-shine {
            left: 100%;
        }

        .copenhagen-section .btn-icon {
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .copenhagen-section .container {
                padding: 0 15px;
            }

            .copenhagen-section .section-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .copenhagen-section .section-header h2 {
                font-size: 2rem;
            }

            .copenhagen-section .content-card {
                padding: 30px 20px;
            }

            .copenhagen-section .specs-grid {
                grid-template-columns: 1fr;
            }

            .copenhagen-section .features-grid {
                grid-template-columns: 1fr;
            }

            .copenhagen-section .cta-section {
                padding: 40px 20px;
                margin: 60px 0;
            }

            .copenhagen-section .cta-text h2 {
                font-size: 2rem;
            }

            .copenhagen-section .intro-text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .copenhagen-section .section-header h2 {
                font-size: 1.8rem;
            }

            .copenhagen-section .cta-text h2 {
                font-size: 1.8rem;
            }

            .copenhagen-section .btn {
                padding: 16px 28px;
                font-size: 1rem;
            }
        }
        
        /*copenhagen-section*/
 /*marseille-section      */
.marseille-section .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        .marseille-section .hero-gradient {
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 500px;
            background: radial-gradient(ellipse at center, rgba(60, 7, 83, 0.08) 0%, rgba(114, 4, 85, 0.06) 30%, rgba(145, 10, 103, 0.04) 60%, transparent 100%);
            pointer-events: none;
            z-index: 0;
        }

        .marseille-section .section {
            position: relative;
            z-index: 1;
            margin: 0 0 50px;
        }

        .marseille-section .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            gap: 20px;
        }

        .marseille-section .icon-wrapper {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 8px 32px rgba(60, 7, 83, 0.3);
            position: relative;
            overflow: hidden;
        }

        .marseille-section .security-icon {
            background: linear-gradient(135deg, #720455 0%, #910A67 50%, #ff6c2c 100%);
        }

        .marseille-section .icon-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .marseille-section .icon-wrapper:hover::before {
            left: 100%;
        }

        .marseille-section .section-header h2 {
            font-size: 35px;
            font-weight: 700;
            background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .marseille-section .content-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .marseille-section .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
        }

        .marseille-section .intro-text {
            font-size: 18px;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 40px;
        }

        .marseille-section .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
        }

        .marseille-section .industry-card {
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .marseille-section .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.02) 0%, rgba(145, 10, 103, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .marseille-section .industry-card:hover::before {
            opacity: 1;
        }

        .marseille-section .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(60, 7, 83, 0.15);
            border-color: rgba(145, 10, 103, 0.3);
        }

        .marseille-section .industry-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            transition: transform 0.3s ease;
        }

        .marseille-section .industry-card:hover .industry-icon {
            transform: scale(1.1);
        }

        .marseille-section .streaming .industry-icon { background: linear-gradient(135deg, #3C0753, #720455); }
        .marseille-section .gaming .industry-icon { background: linear-gradient(135deg, #720455, #910A67); }
        .marseille-section .finance .industry-icon { background: linear-gradient(135deg, #910A67, #ff6c2c); }
        .marseille-section .healthcare .industry-icon { background: linear-gradient(135deg, #ff6c2c, #3C0753); }
        .marseille-section .saas .industry-icon { background: linear-gradient(135deg, #720455, #3C0753); }
        .marseille-section .web-hosting .industry-icon { background: linear-gradient(135deg, #3C0753, #910A67); }

        .marseille-section .industry-content h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .marseille-section .industry-content p {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .marseille-section .server-recommendation {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.05) 0%, rgba(145, 10, 103, 0.05) 100%);
            border: 1px solid rgba(145, 10, 103, 0.2);
            border-radius: 12px;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .marseille-section .server-recommendation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #720455, #910A67);
        }

        .marseille-section .recommendation-icon {
            font-size: 1.2rem;
            color: #910A67;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .marseille-section .recommendation-content {
            color: #2d3748;
            line-height: 1.6;
        }

        .marseille-section .recommendation-content h4 {
            color: #3C0753;
        }

        .marseille-section .security-features {
            display: grid;
            gap: 20px;
        }

        .marseille-section .security-feature {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 20px;
            padding: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .marseille-section .security-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(60, 7, 83, 0.02) 0%, rgba(145, 10, 103, 0.02) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .marseille-section .security-feature:hover::before {
            opacity: 1;
        }

        .marseille-section .security-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 20px 40px rgba(60, 7, 83, 0.12);
            border-color: rgba(145, 10, 103, 0.3);
        }

        .marseille-section .security-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .marseille-section .security-feature:hover .security-feature-icon {
            transform: scale(1.1);
        }

        .marseille-section .tier3 { background: linear-gradient(135deg, #3C0753, #720455); }
        .marseille-section .physical { background: linear-gradient(135deg, #720455, #910A67); }
        .marseille-section .network { background: linear-gradient(135deg, #910A67, #ff6c2c); }
        .marseille-section .management { background: linear-gradient(135deg, #ff6c2c, #3C0753); }

        .marseille-section .security-feature-content h3 {
            font-size: 25px;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .marseille-section .security-feature-content p {
            color: #4a5568;
            line-height: 1.8;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .marseille-section .container {
                padding: 0 15px;
            }

            .marseille-section .section-header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .marseille-section .section-header h2 {
                font-size: 2rem;
            }

            .marseille-section .content-card {
                padding: 30px 20px;
            }

            .marseille-section .industries-grid {
                grid-template-columns: 1fr;
            }

            .marseille-section .security-feature {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .marseille-section .intro-text {
                font-size: 1.1rem;
            }

            .marseille-section .industry-content h3 {
                font-size: 1.3rem;
            }

            .marseille-section .security-feature-content h3 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .marseille-section .section-header h2 {
                font-size: 1.8rem;
            }

            .marseille-section .industry-card {
                padding: 25px 20px;
            }

            .marseille-section .security-feature {
                padding: 25px 20px;
            }

            .marseille-section .server-recommendation {
                flex-direction: column;
                gap: 10px;
            }
        }

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

        .marseille-section .industry-icon {
            animation: float 6s ease-in-out infinite;
        }

        .marseille-section .industry-card:nth-child(2n) .industry-icon {
            animation-delay: -2s;
        }

        .marseille-section .industry-card:nth-child(3n) .industry-icon {
            animation-delay: -4s;
        }

/* queretaro-section */
.queretaro-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.queretaro-section .main-content {
    position: relative;
    z-index: 1;
}

.queretaro-section .hero-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.95), rgba(114, 4, 85, 0.95));
    color: white;
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.queretaro-section .hero-section::before {
    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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.queretaro-section .hero-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #ff6c2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.queretaro-section .hero-description {
    font-size: 18px;
    margin: 0 auto;
    opacity: 0.9;
}

.queretaro-section section {
    padding: 0 0 50px;
}

.queretaro-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.queretaro-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #3C0753;
    margin-bottom: 20px;
    position: relative;
}

.queretaro-section .flag {
    display: inline-block;
    animation: wave 2s infinite ease-in-out;
}

.queretaro-section .security-icon {
    display: inline-block;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.queretaro-section .section-intro {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
}

.queretaro-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.queretaro-section .benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(60, 7, 83, 0.1);
}

.queretaro-section .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(60, 7, 83, 0.2);
    border-color: rgba(255, 108, 44, 0.3);
}

.queretaro-section .card-icon {
    font-size: 21px;
    margin-bottom: 20px;
}

.queretaro-section .benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3C0753;
    margin-bottom: 15px;
}

.queretaro-section .benefit-card p {
    color: #666;
    line-height: 1.7;
}

.queretaro-section .security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.queretaro-section .security-card {
    background: white;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(60, 7, 83, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6c2c;
}

.queretaro-section .security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(60, 7, 83, 0.15);
}

.queretaro-section .security-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.queretaro-section .security-badge {
    background: linear-gradient(135deg, #3C0753, #720455);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.queretaro-section .security-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3C0753;
}

.queretaro-section .security-card p {
    color: #666;
    line-height: 1.6;
}

.queretaro-section .advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.queretaro-section .advantage-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.queretaro-section .advantage-item:hover {
    transform: scale(1.05);
}

.queretaro-section .advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.queretaro-section .advantage-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3C0753;
    margin-bottom: 15px;
}

.queretaro-section .advantage-item p {
    color: #666;
    line-height: 1.6;
}

.queretaro-section .cta-section {
    text-align: center;
}

.queretaro-section .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3C0753, #720455, #910A67);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(60, 7, 83, 0.3);
}

.queretaro-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(60, 7, 83, 0.4);
}

.queretaro-section .button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.queretaro-section .cta-button:hover .button-glow {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.queretaro-section .cta-text {
    margin-top: 20px;
    color: #666;
}

.queretaro-section .faq-container {
    margin: 0 auto;
}

.queretaro-section .faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(60, 7, 83, 0.05);
    background: white;
    transition: all 0.3s ease;
}

.queretaro-section .faq-item:hover {
    box-shadow: 0 8px 30px rgba(60, 7, 83, 0.1);
}

.queretaro-section .faq-item details {
    border: none;
}

.queretaro-section .faq-item summary {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #3C0753;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-left: 4px solid #ff6c2c;
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.queretaro-section  .faq-item summary::-webkit-details-marker {
    display: none;
}

.queretaro-section .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ff6c2c;
    transition: transform 0.3s ease;
}

.queretaro-section .faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.queretaro-section .faq-item summary:hover {
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.05), rgba(60, 7, 83, 0.05));
}

.queretaro-section .faq-content {
    padding: 0 30px 25px;
    background: white;
}

.queretaro-section .faq-content p {
    color: #666;
    line-height: 1.7;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .queretaro-section .hero-title {
        font-size: 2.5rem;
    }

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

    .queretaro-section .section-header h2 {
        font-size: 2rem;
    }

    .queretaro-section .benefits-grid {
        grid-template-columns: 1fr;
    }

    .queretaro-section .security-features {
        grid-template-columns: 1fr;
    }

    .queretaro-section .advantage-grid {
        grid-template-columns: 1fr;
    }

    .queretaro-section .container {
        padding: 0 15px;
    }

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

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

@media (max-width: 480px) {
    .queretaro-section .hero-title {
        font-size: 2rem;
    }

    .queretaro-section .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .queretaro-section .faq-item summary {
        padding: 20px 20px;
        font-size: 1rem;
    }

    .queretaro-section .faq-content {
        padding: 0 20px 20px;
    }
}
/* queretaro-section */

/* santiago-section */
.santiago-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.santiago-section .main-content {
    position: relative;
    z-index: 1;
}

.santiago-section .hero-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.95), rgba(144, 10, 103, 0.95));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.santiago-section .hero-section::before {
    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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

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

.santiago-section .hero-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #ffffff, #ff6c2c, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(255, 108, 44, 0.3)); }
    to { filter: drop-shadow(0 0 40px rgba(255, 108, 44, 0.6)); }
}

.santiago-section .hero-description {
    font-size: 18px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.santiago-section section {
    padding: 0 0 50px;
}

.santiago-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.santiago-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #3C0753;
    margin-bottom: 25px;
    position: relative;
}

.santiago-section .section-intro {
    font-size: 18px;
    color: #666;
    margin: 0 auto;
    line-height: 1.7;
}

.santiago-section .infrastructure-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.santiago-section .infrastructure-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(60, 7, 83, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.santiago-section .block-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.santiago-section .block-icon {
    font-size: 3rem;
    margin-right: 20px;
    background: linear-gradient(135deg, #3C0753, #720455);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.santiago-section .block-header h3 {
    font-size: 27px;
    font-weight: 700;
    color: #3C0753;
}

.santiago-section .block-description {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.santiago-section .features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.santiago-section .feature-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    box-shadow: 0 8px 25px rgba(60, 7, 83, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6c2c;
}

.santiago-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(60, 7, 83, 0.15);
}

.santiago-section .feature-badge {
    background: linear-gradient(135deg, #3C0753, #720455);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.santiago-section .tier-badge {
    font-size: 20px;
    font-weight: bold;
}

.santiago-section .security-icon, 
.santiago-section .seismic-icon {
    font-size: 23px;
}

.santiago-section .feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3C0753;
    margin-bottom: 10px;
}

.santiago-section .feature-content p {
    color: #666;
    line-height: 1.6;
}

.santiago-section .network-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.santiago-section .network-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.santiago-section .network-badge {
    background: linear-gradient(135deg, #910A67, #ff6c2c);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.santiago-section .network-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3C0753;
}

.santiago-section .network-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0px;
}

.santiago-section .submarine-cables {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.santiago-section .cable-item {
    background: rgba(60, 7, 83, 0.03);
    padding: 15px;
    border-left: 3px solid #ff6c2c;
}

.santiago-section .cable-name {
    font-weight: 600;
    color: #3C0753;
    display: block;
    margin-bottom: 5px;
}

.santiago-section .cable-desc {
    color: #666;
    font-size: 0.95rem;
}

.santiago-section .strategic-content {
    margin: 0 auto;
}

.santiago-section .strategic-highlight {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(60, 7, 83, 0.08);
    text-align: center;
}

.santiago-section .highlight-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #3C0753, #ff6c2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.santiago-section .strategic-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #3C0753;
    margin-bottom: 20px;
}

.santiago-section .strategic-highlight p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.santiago-section .applications-section {
    margin-bottom: 60px;
}

.santiago-section .applications-title {
    font-size: 25px;
    font-weight: 700;
    color: #3C0753;
    text-align: center;
    margin-bottom: 20px;
}

.santiago-section .applications-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
}

.santiago-section .applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.santiago-section .app-card {
    background: white;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(60, 7, 83, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.santiago-section .app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
}

.santiago-section .app-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(60, 7, 83, 0.2);
}

.santiago-section .app-header {
    margin-bottom: 20px;
}

.santiago-section .app-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.santiago-section .app-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3C0753;
}

.santiago-section .app-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.santiago-section .cta-section {
    text-align: center;
    margin-top: 30px;
}

.santiago-section .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3C0753, #720455, #910A67);
    color: white;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(60, 7, 83, 0.3);
}

.santiago-section .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(60, 7, 83, 0.4);
}

.santiago-section .button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.santiago-section .cta-button:hover .button-glow {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.santiago-section .faq-section {
    background: linear-gradient(135deg, rgba(60, 7, 83, 0.02), rgba(255, 108, 44, 0.02));
}

.santiago-section .faq-container {
    margin: 0 auto;
}

.santiago-section .faq-item {
    margin-bottom: 25px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(60, 7, 83, 0.08);
    background: white;
    transition: all 0.3s ease;
}

.santiago-section .faq-item:hover {
    box-shadow: 0 12px 35px rgba(60, 7, 83, 0.12);
}

.santiago-section .faq-item details {
    border: none;
}

.santiago-section .faq-item summary {
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1.15rem;
    color: #3C0753;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-left: 5px solid #ff6c2c;
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.santiago-section .faq-item summary::-webkit-details-marker {
    display: none;
}

.santiago-section .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #ff6c2c;
    transition: transform 0.3s ease;
}

.santiago-section .faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.santiago-section .faq-item summary:hover {
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.08), rgba(60, 7, 83, 0.08));
}

.santiago-section .faq-content {
    padding: 0 35px 20px;
    background: white;
}

.santiago-section .faq-content p {
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
    font-size: 1rem;
}

@media (max-width: 768px) {

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

    .santiago-section .section-header h2 {
        font-size: 2.2rem;
    }

    .santiago-section .infrastructure-block {
        padding: 30px;
    }

    .santiago-section .block-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .santiago-section .block-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .santiago-section .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .santiago-section .feature-badge {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .santiago-section .applications-grid {
        grid-template-columns: 1fr;
    }

    .santiago-section .container {
        padding: 0 15px;
    }

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

    .santiago-section .strategic-highlight {
        padding: 30px;
    }

    .santiago-section .applications-title {
        font-size: 1.8rem;
    }

    .santiago-section .cta-button {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {


    .santiago-section .infrastructure-block {
        padding: 25px;
    }

    .santiago-section .feature-item {
        padding: 15px;
    }

    .santiago-section .app-card {
        padding: 25px 20px;
    }

    .santiago-section .faq-item summary {
        padding: 25px 25px;
        font-size: 1rem;
    }

    .santiago-section .faq-content {
        padding: 0 25px 25px;
    }

    .santiago-section .strategic-highlight {
        padding: 25px;
    }

    .santiago-section .highlight-icon {
        font-size: 3rem;
    }

    .santiago-section .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
}
/* santiago-section */
/* montreal-section */
.montreal-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

.montreal-section .hero-section {
    background: linear-gradient(135deg, #3C0753 0%, #720455 50%, #910A67 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.montreal-section .hero-section::before {
    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 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="20" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="15" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

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

.montreal-section .hero-section h2 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ff6c2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.montreal-section .hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.montreal-section .section {
    padding: 50px 0;
    position: relative;
}

.montreal-section .section:nth-child(even) {
    background: #6e055514;
}

.montreal-section .section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.montreal-section .section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #720455, #ff6c2c);
    border-radius: 2px;
}

.montreal-section .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.montreal-section .feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(60, 7, 83, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(114, 4, 85, 0.1);
}

.montreal-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3C0753, #720455, #910A67, #ff6c2c);
}

.montreal-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(60, 7, 83, 0.15);
}

.montreal-section .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3C0753;
    display: flex;
    align-items: center;
    gap: 10px;
}

.montreal-section .feature-card h3::before {
    content: '🔒';
    font-size: 1.5rem;
}

.montreal-section .feature-card:nth-child(2) h3::before {
    content: '🛡️';
}

.montreal-section .feature-card:nth-child(3) h3::before {
    content: '⚙️';
}

.montreal-section .comparison-section {
    background: linear-gradient(135deg, #3C0753 0%, #720455 100%);
    color: white;
    padding: 50px 0;
    position: relative;
}

.montreal-section .comparison-section h2 {
    color: white;
}

.montreal-section .comparison-section h2::after {
    background: linear-gradient(90deg, #ff6c2c, #ffffff);
}

.montreal-section .comparison-table {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.montreal-section table {
    width: 100%;
    border-collapse: collapse;
}

.montreal-section th {
    background: linear-gradient(135deg, #720455, #910A67);
    color: white;
    padding: 25px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
}

.montreal-section td {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(114, 4, 85, 0.1);
    color: #333;
    vertical-align: top;
}

.montreal-section tr:last-child td {
    border-bottom: none;
}

.montreal-section tr:nth-child(even) {
    background: rgba(60, 7, 83, 0.02);
}

.montreal-section .highlight-text {
    font-weight: 600;
    color: #720455;
}

.montreal-section .cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
    padding: 50px 0;
}

.montreal-section .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #720455, #ff6c2c);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 108, 44, 0.3);
    position: relative;
    overflow: hidden;
}

.montreal-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.montreal-section .cta-button:hover::before {
    left: 100%;
}

.montreal-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 108, 44, 0.4);
}

.montreal-section .section-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 0 auto;
    color: #666;
}

.montreal-section .comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.montreal-section .accent-highlight {
    color: #ff6c2c;
    font-weight: 600;
}

.montreal-section .why-choose-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #666;
}

.montreal-section .why-choose-text:last-child {
    margin-bottom: 0;
}

.montreal-section .cta-title {
    margin-bottom: 1rem;
}

.montreal-section .cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.montreal-section .cta-icon {
    margin-right: 10px;
}

.montreal-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.montreal-section .stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(60, 7, 83, 0.1);
}

.montreal-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #720455;
    margin-bottom: 10px;
}

.montreal-section .stat-label {
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .montreal-section .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .montreal-section table,
    .montreal-section th,
    .montreal-section td {
        font-size: 0.9rem;
    }

    .montreal-section th,
    .montreal-section td {
        padding: 15px 10px;
    }
}

.montreal-section .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.montreal-section .floating-elements::before,
.montreal-section .floating-elements::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 108, 44, 0.1);
    animation: float-elements 15s infinite ease-in-out;
}

.montreal-section .floating-elements::before {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.montreal-section .floating-elements::after {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 7s;
}

@keyframes float-elements {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
    }
}

    /* montreal-section */