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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .header {
            background: white;
            padding: 16px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #333;
        }

        .logo img {
            width: 100%;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }

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

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 400;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .nav-menu a:hover {
            color: #5b7fff;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 4px;
            cursor: pointer;
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

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

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            min-width: 120px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

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

        .dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #333;
            font-size: 14px;
        }

        .dropdown-menu a:hover {
            background: #f8f9fa;
            color: #5b7fff;
        }

        .get-account-btn {
            background: linear-gradient(135deg, #5b7fff 0%, #4c6ef5 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            box-shadow: 0 2px 4px rgba(91, 127, 255, 0.3);
            transition: all 0.3s ease;
        }

        .get-account-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(91, 127, 255, 0.4);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1500;
            display: none;
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            z-index: 1600;
            transition: right 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mobile-menu-logo img {
            width: 24px;
            height: 24px;
        }

        .mobile-menu-logo span {
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .mobile-menu-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-get-account-btn {
            background: #5b7fff;
            color: white;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #333;
            padding: 4px;
        }

        .mobile-menu-items {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 20px 0;
        }

        .mobile-menu-items a {
            padding: 16px 20px;
            text-decoration: none;
            color: #333;
            font-size: 16px;
            font-weight: 500;
            background: #f8f9fa;
            margin: 4px 20px;
            border-radius: 8px;
            transition: background-color 0.3s ease;
        }

        .mobile-menu-items a:hover {
            background: #f0f0f0;
        }

        .mobile-menu-footer {
            padding: 20px;
            text-align: center;
            color: #999;
            font-size: 14px;
            border-top: 1px solid #f0f0f0;
        }

        .main-content {
            margin-top: 80px;
        }

        .hero {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e8f5e8;
            color: #2d7d2d;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 48px;
            font-weight: 500;
            color: #333;
            margin-bottom: 32px;
            line-height: 1.1;
        }

        .hero-title img {
            width: 40px;
            height: 40px;
            vertical-align: middle;
        }

        .hero-title .google-ads {
            color: #5b7fff;
        }

        .hero-cta {
            background: #5b7fff;
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: inline-block;
        }

        .hero-visual {
            flex: 1;
        }

        .hero-video-container {
            background: #e8e8e8;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; 
        }

        .hero-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .features {
            padding: 80px 0;
            background: white;
        }

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

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

        .features-subtitle {
            color: #5b7fff;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .features-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: flex-start;
            position: relative;
        }

        .features-left h3 {
            font-size: 20px;
            font-weight: 600;
            color: #333;
            margin-bottom: 24px;
        }

        .features-left ul {
            list-style: none;
        }

        .features-left li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 14px;
            color: #666;
        }

        .features-right {
            background: #333;
            color: white;
            padding: 32px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .features-content {
            flex: 1;
            z-index: 2;
            position: relative;
        }

        .features-illustration {
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        .features-illustration img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            opacity: 0.8;
        }

        .features-right h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .features-right ul {
            list-style: none;
            margin-bottom: 32px;
        }

        .features-right li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #ccc;
            font-size: 14px;
        }

        .features-cta {
            text-align: center;
            margin-top: 40px;
            padding: 0 20px;
        }

        .features-cta-text {
            color: #666;
            font-size: 16px;
            margin-bottom: 24px;
            font-weight: 400;
        }

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

        .btn-whatsapp {
            background: #25D366;
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            min-width: 140px;
            justify-content: center;
        }

        .btn-whatsapp:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
        }

        .btn-telegram {
            background: #457EFC;
            color: white;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 2px 4px rgba(0, 136, 204, 0.3);
            transition: all 0.3s ease;
            min-width: 140px;
            justify-content: center;
        }

        .btn-telegram:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 136, 204, 0.4);
        }

        .benefits {
            padding: 80px 0;
            background: #f8f9fa;
        }

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

        .benefits-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .benefits-subtitle {
            font-size: 16px;
            color: #5b7fff;
            margin-bottom: 60px;
            font-weight: 500;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .benefit-item {
            text-align: center;
            background: white;
            padding: 32px 24px;
            border-radius: 12px;
        }

        .benefit-icon {
            padding: 20px;
            width: fit-content;
            border: 1px solid #eaebec;
            border-radius: 12px;
            margin: 0 auto 16px auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .benefit-subtitle {
            color: #666;
            font-size: 12px;
            line-height: 1.4;
            margin-top: 4px;
        }

        .benefits-bottom-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .advantage {
            padding: 80px 0;
            background: white;
        }

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

        .advantage-slogan {
            font-size: 16px;
            color: #5b7fff;
            text-align: center;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .advantage-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
        }

        .advantage-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #ff6b9d;
        }

        .advantage-banner {
            background: linear-gradient(135deg, #5b7fff 0%, #4c6ef5 100%);
            color: white;
            padding: 0 40px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .advantage-banner-left {
            flex: 1;
        }

        .advantage-banner-left h3 {
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }

        .advantage-banner-center {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .advantage-banner-right {
            flex: 1;
            text-align: right;
        }

        .advantage-banner-right p {
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
            opacity: 0.9;
        }

        .advantage-banner-content {
            flex: 1;
        }

        .advantage-banner h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .advantage-banner p {
            opacity: 0.9;
            margin-bottom: 16px;
            font-size: 14px;
        }

        .advantage-icons {
            display: flex;
            gap: 16px;
        }

        .advantage-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .advantage-feature {
            background: #f6f6f6;
            padding: 32px 24px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
        }

        .advantage-feature-visual {
            flex: 1 1 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .advantage-feature-visual img {
            max-width: 100%;
            height: auto;
        }

        .advantage-feature h4 {
            margin-bottom: 12px;
            font-size: 18px;
            font-weight: 600;
            color: #333;
        }

        .advantage-feature p {
            margin: 0;
            font-size: 14px;
            line-height: 1.5;
            color: #666;
        }

        .advantage-feature h4 {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .advantage-feature p {
            color: #666;
            font-size: 14px;
            line-height: 1.4;
        }

        .partners {
            padding: 80px 0;
            background: #ffffff;
            text-align: center;
        }

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

        .partners-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 16px;
        }

        .partners-subtitle {
            color: #5b7fff;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
        }

        .partners .partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            flex-wrap: nowrap;
        }

        .partner-card {
            background: #f6f6f6;
            padding: 24px 16px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            width: 215px;
            height: 120px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

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

        .partner-logo {
            width: 100%;
            height: auto;
            max-height: 64px;
            object-fit: contain;
        }

        .partner-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.2;
        }

        @media (max-width: 768px) {
            .partners .partners-grid {
                gap: 12px;
                padding: 0 20px;
                flex-wrap: wrap;
            }
            
            .partner-card {
                width: 100%;
                height: 100px;
                padding: 20px 12px;
            }
            
            .partner-logo {
                max-height: 40px;
            }
            
            .partner-name {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .partners .partners-grid {
                gap: 12px;
            }
            
            .partner-card {
                width: 120px;
                height: 80px;
                padding: 16px 12px;
            }
            
            .partner-logo {
                max-height: 36px;
            }
            
            .partner-name {
                font-size: 12px;
            }
        }

        .partners-description {
            color: #666;
            font-size: 14px;
            text-align: center;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }

        .stats {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

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

        .stats-subtitle {
            color: #5b7fff;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .stats-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 60px;
        }

        .stats-cards {
            display: flex !important;
            justify-content: center !important;
            gap: 20px !important;
            max-width: 900px !important;
            margin: 0 auto !important;
        }

        .stat-card {
            background: #f6f6f6 !important;
            color: #333 !important;
            padding: 28px 20px !important;
            border-radius: 12px !important;
            text-align: left !important;
            width: 200px !important;
            flex-shrink: 0 !important;
            position: relative !important;
            height: 140px !important;
            overflow: hidden !important;
        }

        .stat-card.highlight {
            background: linear-gradient(135deg, #5b7fff 0%, #4c6ef5 100%) !important;
            color: white !important;
        }

        .stat-card.dark {
            background: #333 !important;
            color: white !important;
        }

        .stat-card.light {
            background: #f6f6f6 !important;
            color: #333 !important;
        }

        .stat-label {
            font-size: 12px !important;
            font-weight: 400 !important;
            opacity: 0.8 !important;
            position: absolute !important;
            top: 20px !important;
            left: 20px !important;
            text-align: left !important;
            width: calc(100% - 40px) !important;
            white-space: nowrap !important;
        }

        .stat-card.highlight .stat-label {
            opacity: 0.9 !important;
        }

        .stat-card.dark .stat-label {
            opacity: 0.7 !important;
        }

        .stat-number {
            font-size: 24px !important;
            font-weight: 600 !important;
            line-height: 1.2 !important;
            position: absolute !important;
            bottom: 20px !important;
            left: 20px !important;
            text-align: left !important;
            width: calc(100% - 40px) !important;
            white-space: nowrap !important;
        }

        .faq {
            padding: 80px 0;
            background: white;
        }

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

        .faq-subtitle {
            color: #5b7fff;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
        }

        .faq-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 60px;
            text-align: center;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .faq-item {
            align-self: start;
        }

        .faq-item {
            background: #f6f6f6;
            padding: 20px 24px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .faq-item:hover {
            background: #f0f0f0;
        }

        .faq-item.active:hover {
            background: #e8e8e8;
        }

        .faq-item.active {
            background: #e8e8e8;
        }

        .faq-question-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .faq-question {
            font-weight: 500;
            color: #333;
            font-size: 14px;
            line-height: 1.4;
            margin: 0;
            flex: 1;
            transition: color 0.3s ease;
        }

        .faq-item.active .faq-question {
            color: #222;
            font-weight: 600;
        }

        .faq-arrow {
            color: #666;
            font-size: 12px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .faq-item.active .faq-arrow {
            transform: rotate(180deg);
            color: #333;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
            opacity: 0;
            padding-top: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 150px;
            padding-top: 16px;
            opacity: 1;
        }

        .faq-answer p {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
            margin: 0;
        }

        .bottom-partners {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

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

        .bottom-partners-subtitle {
            color: #5b7fff;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .bottom-partners-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 60px;
        }

        .bottom-partners-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            flex-wrap: nowrap;
        }

        .bottom-partner-card {
            background: white;
            padding: 24px 16px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 16px;
            width: 160px;
            height: 120px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

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

        .bottom-partner-logo {
            width: 100%;
            height: auto;
            max-height: 64px;
            object-fit: contain;
        }

        .bottom-partner-name {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            text-align: center;
            line-height: 1.2;
        }

        .bottom-partners-description {
            color: #666;
            font-size: 14px;
            text-align: center;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto 40px auto;
        }

        .bottom-partners-cta {
            background: #5b7fff;
            color: white;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .bottom-partners-cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(91, 127, 255, 0.4);
        }

        .cta {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .cta-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .cta-content {
            flex: 1;
            text-align: left;
        }

        .cta-subtitle {
            color: #5b7fff;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 500;
        }

        .cta-title {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            line-height: 1.2;
        }

        .cta-widget {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .calendar-widget {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 0;
            min-height: 300px;
            width: 100%;
            max-width: 400px;
            overflow: hidden;
        }

        .calendly-inline-widget {
            border-radius: 12px;
            overflow: hidden;
        }

        .footer {
            background: #f5f5f5;
            padding: 60px 0 20px 0;
        }

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

        .footer-main {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .footer-left {
            flex: 1;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .footer-logo img {
            width: 32px;
            height: 32px;
        }

        .footer-logo span {
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }

        .footer-slogan {
            color: #666;
            font-size: 16px;
            line-height: 1.4;
        }

        .footer-slogan .google-ads {
            color: #5b7fff;
            font-weight: 600;
        }

        .footer-right {
            display: flex;
            gap: 60px;
        }

        .footer-section {
            flex: 1;
        }

        .footer-section h4 {
            color: #999;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 16px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 16px;
            color: #333;
        }

        .contact-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .email-icon {
            background: #f0f0f0;
            color: #666;
        }

        .whatsapp-icon {
            background: #25D366;
            color: white;
        }

        .telegram-icon {
            background: #0088cc;
            color: white;
        }

        .footer-contact-item a {
            color: #5b7fff;
            text-decoration: none;
        }

        .footer-link {
            color: #333 !important;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #5b7fff !important;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            color: #999;
            font-size: 14px;
        }

        .footer-address {
            color: #999;
        }

        .footer-copyright {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .footer-copyright a {
            color: #5b7fff;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu-overlay.active {
                display: block;
            }

            .hero-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }

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

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

            .benefits-grid,
            .benefits-bottom-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .advantage-banner {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .advantage-feature-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stats-cards {
                flex-direction: column;
                gap: 16px;
                align-items: center;
            }
            
            .stat-card {
                width: 100%;
                max-width: 280px;
                padding: 24px 20px;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .faq-item {
                padding: 16px 20px;
            }

            .cta-container {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .cta-content {
                text-align: center;
            }
            
            .calendar-widget {
                max-width: 100%;
            }

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

            .partners .partners-grid {
                gap: 20px;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding: 0 20px;
                display: flex;
            }
            
            .partner-card {
                flex-shrink: 0;
                min-width: 140px;
            }

            .bottom-partners-grid {
                flex-direction: column;
                gap: 12px;
                max-width: 400px;
            }
            
            .bottom-partner-card {
                width: 100%;
                height: auto;
                padding: 16px 20px;
                flex-direction: row;
                justify-content: flex-start;
                background: white;
                border: 1px solid #f0f0f0;
                box-shadow: none;
            }
            
            .bottom-partner-card:hover {
                transform: none;
                background: #f8f9fa;
                border-color: #e0e0e0;
            }
            
            .bottom-partner-logo {
                width: 32px;
                height: 32px;
                max-height: none;
                flex-shrink: 0;
            }
            
            .bottom-partner-name {
                font-size: 16px;
                font-weight: 500;
                text-align: left;
            }
            
            .footer-main {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-right {
                flex-direction: column;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

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

            .features-title,
            .benefits-title,
            .advantage-title,
            .partners-title,
            .stats-title,
            .faq-title,
            .bottom-partners-title,
            .cta-title {
                font-size: 28px;
            }

            .features-right {
                padding: 24px;
            }

            .advantage-banner {
                padding: 24px;
            }

            .cta-contact {
                padding: 24px;
            }

            .benefit-item,
            .advantage-feature {
                padding: 24px;
            }
        }

    .terms-hero {
        background: white;
        padding: 80px 0 40px 0;
        text-align: center;
    }

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

    .terms-subtitle {
        color: #5b7fff;
        margin-bottom: 8px;
        font-size: 16px;
        font-weight: 500;
    }

    .terms-title {
        font-size: 36px;
        font-weight: 600;
        color: #333;
        margin-bottom: 0;
    }

    .terms-content {
        background: #f8f9fa;
        padding: 60px 0;
    }

    .terms-wrapper {
        background: white;
        border-radius: 12px;
        padding: 60px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .terms-section {
        margin-bottom: 40px;
    }

    .terms-section:last-child {
        margin-bottom: 0;
    }

    .terms-section h2 {
        font-size: 24px;
        font-weight: 600;
        color: #333;
        margin-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }

    .terms-section h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin: 24px 0 12px 0;
    }

    .terms-section p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .terms-section ul,
    .terms-section ol {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 16px;
        padding-left: 20px;
    }

    .terms-section li {
        margin-bottom: 8px;
    }

    .terms-section a {
        color: #5b7fff;
        text-decoration: none;
    }

    .terms-section a:hover {
        text-decoration: underline;
    }

    .terms-section strong {
        color: #333;
        font-weight: 600;
    }

    @media (max-width: 768px) {
        .terms-wrapper {
            padding: 40px 20px;
        }

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

        .terms-section h2 {
            font-size: 20px;
        }

        .terms-section h3 {
            font-size: 16px;
        }

        .terms-section p,
        .terms-section ul,
        .terms-section ol {
            font-size: 14px;
        }
    }

    .partners-hero {
        background: white;
        padding: 80px 0 40px 0;
        text-align: center;
    }

    .partners-grid-section {
        background: #f8f9fa;
        padding: 60px 0;
    }

    

    .partner-card-full {
        background: white;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .partner-card-full:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

    .partner-header {
        margin-bottom: 24px;
    }

    .partner-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
    }

    .partner-logo img {
        width: 200px;
        height: 80px;
        object-fit: contain;
        display: block;
    }

    .partner-name {
        font-size: 20px;
        font-weight: 600;
        color: #333;
    }

    .partner-description {
        flex: 1;
        margin-bottom: 24px;
    }

    .partner-description p {
        color: #666;
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
    }

    .partner-cta {
        margin-top: auto;
    }

    .partner-btn {
        background: #5b7fff;
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .partner-btn:hover {
        background: #4c6ef5;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(91, 127, 255, 0.4);
    }

    @media (max-width: 768px) {
        .partners-grid {
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 0 20px;
        }

        .partner-card-full {
            padding: 24px;
        }

        .partner-logo img {
            width: 60px;
            height: 60px;
        }

        .partner-name {
            font-size: 18px;
        }

        .partner-description p {
            font-size: 14px;
        }
    }

.referral-hero {
    background: white;
    padding: 80px 0 40px 0;
    text-align: left;
}
.referral-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.referral-link {
    color: #5b7fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}
.referral-title {
    font-size: 40px;
    font-weight: 600;
    color: #222;
    margin-bottom: 40px;
    margin-top: 8px;
}
.referral-main {
    background: transparent;
    padding-bottom: 60px;
}
.referral-banner {
    background: #232328;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 48px 48px 48px 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    gap: 40px;
}
.referral-banner-left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.referral-banner-subtitle {
    color: #5b7fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
}
.referral-banner-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}
.referral-banner-desc {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 32px;
}
.referral-banner-btns {
    display: flex;
    gap: 20px;
}
.referral-banner-btns .btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}
.referral-banner-btns .btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
}
.referral-banner-btns .btn-telegram {
    background: linear-gradient(135deg, #5b7fff 0%, #4c6ef5 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(91, 127, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}
.referral-banner-btns .btn-telegram:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(91, 127, 255, 0.4);
}
.referral-banner-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.referral-banner-right img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 900px) {
    .referral-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 16px;
        gap: 24px;
    }
    .referral-banner-right {
        justify-content: center;
    }
    .referral-banner-right img {
        max-width: 220px;
    }
}
@media (max-width: 600px) {
    .referral-title {
        font-size: 28px;
    }
    .referral-banner-title {
        font-size: 20px;
    }
    .referral-banner {
        padding: 16px 4px;
    }
    .referral-banner-right img {
        max-width: 120px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #666;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    justify-content: center;
}

.email-btn {
    background: #222;
    color: white;
}

.email-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.telegram-btn {
    background: linear-gradient(135deg, #5b7fff 0%, #4c6ef5 100%);
    color: white;
}

.telegram-btn:hover {
    background: linear-gradient(135deg, #4c6ef5 0%, #3b5bdb 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 127, 255, 0.3);
}

.modal-btn i {
    font-size: 18px;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 24px;
        margin: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-btn {
        padding: 14px 16px;
        font-size: 15px;
    }
}