@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');

:root {
    --primary-color: #0052cc;
    --secondary-color: #00a3e0;
    --accent-color: #ff6b00;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #666666;
    --text-color: #333333;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: block;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color) !important;
    color: var(--light-color) !important;
    border-radius: var(--border-radius);
}

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

.btn-success {
    background: #10b981 !important;
    color: var(--light-color) !important;
    border-radius: var(--border-radius);
}

.btn-success:hover {
    background: #059669 !important;
}

.btn-secondary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    width: 35px;
    height: 35px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: none;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero {
    position: relative;
    height: 600px;
}

.hero-carousel {
    height: 100%;
}

.hero-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light-color);
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.ticker-section {
    background: var(--dark-color);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-wrapper {
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: var(--light-color);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.ticker-symbol {
    font-weight: 700;
    font-size: 0.9rem;
}

.ticker-price {
    font-size: 1.1rem;
}

.ticker-change {
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.ticker-change.positive {
    background: #10b981;
    color: white;
}

.ticker-change.negative {
    background: #ef4444;
    color: white;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.platforms-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.platform-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.platform-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.btn-download {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
}

.btn-download:hover {
    background: var(--secondary-color);
}

.platforms-visual-section {
    padding: 6rem 0;
    background: var(--light-color);
    overflow: hidden;
}

.platforms-visual-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platforms-visual-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.platforms-visual-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.platforms-visual-devices {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.platforms-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

.device-mockup.laptop {
    width: 450px;
    height: 280px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 8px solid #333;
}

.device-mockup.mobile {
    width: 140px;
    height: 280px;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    border: 6px solid #333;
    border-radius: 20px;
    z-index: 2;
}

.chart-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.chart-preview::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(0, 163, 224, 0.1) 50%, transparent 51%) 0 0/20px 20px,
        linear-gradient(0deg, transparent 49%, rgba(0, 163, 224, 0.1) 50%, transparent 51%) 0 0/20px 20px;
}

.chart-preview::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 20px;
    right: 20px;
    height: 80px;
    background: linear-gradient(to top, 
        rgba(16, 185, 129, 0.3) 0%, 
        rgba(16, 185, 129, 0.1) 50%, 
        rgba(239, 68, 68, 0.1) 50%, 
        rgba(239, 68, 68, 0.3) 100%);
    clip-path: polygon(
        0% 60%, 15% 45%, 30% 55%, 45% 30%, 60% 40%, 75% 20%, 90% 35%, 100% 25%
    );
}

.chart-preview-mobile {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
}

.chart-preview-mobile::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: 
        linear-gradient(90deg, transparent 49%, rgba(0, 163, 224, 0.1) 50%, transparent 51%) 0 0/10px 10px,
        linear-gradient(0deg, transparent 49%, rgba(0, 163, 224, 0.1) 50%, transparent 51%) 0 0/10px 10px;
}

.chart-preview-mobile::after {
    content: '';
    position: absolute;
    bottom: 40%;
    left: 10px;
    right: 10px;
    height: 60px;
    background: linear-gradient(to bottom, 
        rgba(239, 68, 68, 0.4) 0%, 
        rgba(239, 68, 68, 0.1) 50%, 
        rgba(16, 185, 129, 0.1) 50%, 
        rgba(16, 185, 129, 0.4) 100%);
    clip-path: polygon(
        0% 40%, 20% 60%, 40% 45%, 60% 70%, 80% 55%, 100% 75%
    );
}

.platform-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.platform-label.label-1 {
    top: 120px;
    left: 0;
}

.platform-label.label-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: 0.5s;
}

.platform-label.label-3 {
    top: 30px;
    right: -30px;
    animation-delay: 1s;
}

.platform-logo {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.platform-logo.mt4 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.platform-logo.mt5 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.platform-info h4 {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.platform-info p {
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin: 0;
    white-space: nowrap;
}

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

.instruments-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.instruments-tabs {
    margin-top: 3rem;
}

.tabs-navigation {
    display: flex;
    gap: 0;
    background: var(--light-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--gray-medium);
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background: var(--light-color);
    border: none;
    border-top: 3px solid transparent;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Open Sans', sans-serif;
}

.tab-btn:hover {
    background: var(--gray-light);
}

.tab-btn.active {
    background: #f8f9fc;
    border-top-color: var(--primary-color);
    color: var(--primary-color);
}

.tabs-content {
    position: relative;
    min-height: 500px;
}

.tab-pane {
    display: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
}

.tab-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 70%);
}

.tab-pane.active {
    display: flex;
    align-items: center;
}

.tab-content-text {
    position: relative;
    z-index: 1;
    padding: 3rem 4rem;
    max-width: 600px;
}

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

.tab-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.deposit-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.country-selector {
    max-width: 400px;
    margin: 0 auto 3rem;
}

.country-dropdown {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    background: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.country-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.bank-account {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bank-account h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.account-details {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.account-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-medium);
}

.account-detail strong {
    color: var(--dark-color);
}

.copy-btn {
    background: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.copy-btn:hover {
    background: var(--primary-color);
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-content {
    text-align: center;
    color: var(--light-color);
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--light-color) !important;
    color: var(--primary-color) !important;
}

.cta-buttons .btn-secondary {
    background: transparent !important;
    color: var(--light-color) !important;
    border: 2px solid var(--light-color);
}

.cta-buttons .btn-secondary:hover {
    background: var(--light-color) !important;
    color: var(--primary-color) !important;
}

.features-section {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.8;
}

.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--secondary-color);
    background: rgba(0, 163, 224, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-legal {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-legal a {
    color: var(--gray-dark);
    text-decoration: none;
}

.footer-legal a:hover {
    color: var(--light-color);
}

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

.footer-warning h4 {
    color: var(--light-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-warning p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-dark);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-link {
        padding: 1rem 1.5rem;
        width: 90%;
        justify-content: space-between;
    }

    .dropdown-arrow {
        display: inline-block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-left: 0;
        padding-left: 1.5rem;
        background: var(--gray-light);
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
    }

    .btn-success,
    .btn-secondary {
        text-align: center;
        margin: 0.5rem 1.5rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .platforms-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .tabs-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .tab-pane {
        min-height: 400px;
    }

    .tab-content-text {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .tab-content-text h2 {
        font-size: 1.75rem;
    }

    .tab-content-text p {
        font-size: 1rem;
    }

    .tab-pane::before {
        background: linear-gradient(to bottom, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.85) 100%);
    }

    .platforms-visual-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platforms-visual-devices {
        margin: 2rem 0 0 0;
    }

    .platforms-image {
        max-width: 100%;
    }

    .platform-info h4 {
        font-size: 0.8rem;
    }

    .platform-info p {
        font-size: 0.7rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        gap: 0.8rem;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--light-color);
}

.swiper-pagination-bullet {
    background: var(--light-color);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

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

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text {
    max-width: 600px;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.content-text p {
    margin-bottom: 1.5rem;
}

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

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.advantages-list {
    max-width: 900px;
    margin: 0 auto;
}

.advantage-item {
    background: var(--light-color);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.advantage-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.advantage-item p {
    line-height: 1.8;
    color: var(--text-color);
}

.download-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.platform-card.featured {
    border: 2px solid var(--secondary-color);
}

.platform-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.platform-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.platform-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.form-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.withdrawal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-divider {
    margin: 2rem 0 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
}

.form-divider h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-notice {
    background: #fff3cd;
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid #ffc107;
}

.form-notice p {
    margin: 0;
    color: #856404;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.instruments-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.category-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.instruments-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.instruments-table thead {
    background: var(--primary-color);
    color: var(--light-color);
}

.instruments-table th,
.instruments-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-medium);
}

.instruments-table tbody tr:hover {
    background: var(--gray-light);
}

.table-note {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.table-note p {
    margin: 0;
    color: var(--gray-dark);
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.instrument-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.instrument-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.instrument-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.instrument-card p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.about-regum {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-regum .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

.recognition-badge {
    background: #ffc107;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
}

.recognition-badge p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

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

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

.course-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.course-card.featured {
    border: 3px solid var(--secondary-color);
}

.course-badge {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.course-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.course-highlights,
.course-format,
.course-instructors {
    margin-bottom: 2rem;
}

.course-highlights h4,
.course-format h4,
.course-instructors h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.course-highlights ul {
    list-style: none;
    padding: 0;
}

.course-highlights li {
    padding: 0.5rem 0;
    line-height: 1.6;
}

.course-format p,
.course-instructors p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.course-cta {
    margin-top: 2rem;
}

.methodology {
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


.methodology-item {
    text-align: center;
    padding: 1rem;
}

.methodology-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.methodology-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.methodology-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

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

.testimonial-highlight {
    text-align: center;
    margin: 3rem 0;
}

.testimonial-stat {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-stat h3 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-stat p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.success-factors {
    margin-top: 3rem;
    text-align: center;
}

.success-factors h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.factor-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.factor-item p {
    margin: 0;
    color: var(--text-color);
}

.offices-section {
    padding: 60px 0;
    background: var(--gray-light);
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 columna */
    gap: 2rem;
    margin-top: 3rem;
}

/* Desktop: 2 columnas */
@media (min-width: 768px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.office-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.office-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-card p {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.disclaimer-section {
    padding: 40px 0;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.disclaimer-content p {
    color: #856404;
    margin-bottom: 1rem;
    line-height: 1.6;
}


@media (min-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .platforms-grid,
    .instruments-grid,
    .methodology-grid,
    .factors-grid,
    .offices-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .instruments-categories {
        flex-direction: column;
        align-items: stretch;
    }

    .category-btn {
        text-align: center;
    }
}

.directory-section {
    padding: 4rem 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #0052cc, #00a3e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

.member-title {
    color: #0052cc;
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.linkedin-link:hover {
    color: #005582;
}

.linkedin-link svg {
    width: 24px;
    height: 24px;
}

.partnership-statement {
    background: linear-gradient(135deg, #0052cc, #00a3e0);
    border-radius: 16px;
    padding: 3rem;
    color: #fff;
    text-align: center;
    margin-top: 3rem;
}

.statement-content h2 {
    margin: 0 0 1.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.statement-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.partnership-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.partnership-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.partnership-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.partnership-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offices-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.office-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.office-grid {
    display: grid;
    gap: 0;
}

.office-image {
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0052cc, #00a3e0);
}

.office-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-details {
    padding: 2.5rem;
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.country-flag {
    font-size: 3rem;
}

.office-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.manager-info {
    margin-bottom: 2rem;
}

.manager-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
}

.manager-photo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052cc, #00a3e0);
    border: 3px solid #0052cc;
}

.manager-profile h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
}

.manager-title {
    color: #0052cc;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.linkedin-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
    text-align: left;
    float: left;
}

.linkedin-link-small:hover {
    color: #005582;
}

.linkedin-link-small svg {
    width: 20px;
    height: 20px;
}

.office-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    color: #0052cc;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-item p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.alliance-statement {
    background: linear-gradient(135deg, #0052cc, #00a3e0);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: #fff;
    margin-top: 2rem;
}

.alliance-statement h2 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.statement-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.alliance-statement p {
    margin: 0;
    font-size: 1.1rem;
}

.regulation-intro {
    padding: 3rem 0;
    background:  #05579e;
    color: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.regulation-details {
    padding: 4rem 0;
    background: #f8f9fa;
}

.regulation-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.regulation-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.regulation-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #0052cc;
}

.regulation-header h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.regulation-body p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.regulation-info-box {
    background: #f8f9fa;
    border-left: 4px solid #0052cc;
    padding: 1.5rem;
    margin-top: 1.5rem;
    border-radius: 8px;
}

.regulation-info-box h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    color: #0052cc;
    font-weight: 700;
}

.regulation-info-box p {
    color: #333;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
}

.regulation-info-box p:last-child {
    margin-bottom: 0;
}

.regulation-info-box .address {
    color: #666;
    font-style: italic;
}

.compliance-section {
    padding: 4rem 0;
    background: #fff;
}

.compliance-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 3rem 0;
    color: #1a1a1a;
    font-weight: 700;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.compliance-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.compliance-item h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    color: #0052cc;
    font-weight: 700;
}

.compliance-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .office-grid {
        grid-template-columns: 1fr;
    }

    .office-image {
        height: 250px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .office-grid {
        grid-template-columns: 1fr;
    }

    .office-image {
        height: 200px;
    }

    .office-details {
        padding: 1.5rem;
    }

    .manager-profile {
        flex-direction: column;
        text-align: center;
    }

    .office-header {
        flex-direction: column;
        text-align: center;
    }

    .partnership-statement,
    .alliance-statement {
        padding: 2rem 1.5rem;
    }

    .statement-content h2,
    .alliance-statement h2 {
        font-size: 1.5rem;
    }

    .intro-highlight {
        font-size: 1.2rem;
    }

    .regulation-card {
        padding: 1.5rem;
    }

    .regulation-header {
        flex-direction: column;
        text-align: center;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .partnership-logos {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   Demo Account Page Styles
   ======================================== */

.demo-account-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.demo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.demo-benefits h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.benefit-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.demo-features {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.demo-features h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.demo-features ul {
    list-style: none;
    padding: 0;
}

.demo-features ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-color);
    border-bottom: 1px solid var(--gray-medium);
}

.demo-features ul li:last-child {
    border-bottom: none;
}

.demo-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.demo-form-container {
    position: sticky;
    top: 100px;
}

.form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray-dark);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.demo-form .form-group {
    margin-bottom: 1.5rem;
}

.demo-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.demo-form input[type="text"],
.demo-form input[type="email"],
.demo-form input[type="tel"],
.demo-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.checkbox-group {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--text-color);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--secondary-color);
}

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

.form-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.form-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}


/* Responsive Demo Account */
@media (max-width: 968px) {
    .demo-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-form-container {
        position: static;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .demo-account-section {
        padding: 2rem 0;
    }

    .demo-benefits h2 {
        font-size: 1.5rem;
    }

    .form-card h2 {
        font-size: 1.5rem;
    }

    .benefit-item {
        gap: 0.75rem;
    }

    .benefit-text h3 {
        font-size: 1.1rem;
    }
}
