 body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f0f8ff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #0066cc;
            color: white;
            padding: 10px 0;
        }
        nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 5px 10px;
            font-weight: bold;
            font-size: 16px;
            white-space: nowrap;
        }
        nav a:hover {
            text-decoration: underline;
        }
        
        /* Нов стил за мобилно меню */
        .mobile-menu {
            display: none;
        }
        
        .hero {
            background-color: #0066cc;
            color: white;
            padding: 40px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.2em;
            margin-bottom: 20px;
            padding: 0 10px;
        }
        .hero p {
            font-size: 1.1em;
            max-width: 800px;
            margin: 0 auto 30px;
            padding: 0 15px;
        }
        
        /* Стилове за мобилни устройства */
        @media only screen and (max-width: 768px) {
            nav {
                display: none;
            }
            
            .mobile-menu {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                padding: 5px;
            }
            
            .hero h1 {
                font-size: 1.8em;
            }
            .hero p {
                font-size: 1em;
            }
            .step, .benefit {
                min-width: 100%;
                margin-bottom: 15px;
            }
            .consent-popup h3 {
                font-size: 1.2em;
            }
            .consent-popup p {
                font-size: 0.9em;
            }
            .consent-buttons button {
                width: 100%;
                margin: 5px 0;
            }
            
            /* Показване само на мобилния бутон */
            #mobileButton {
                display: inline-block !important;
            }
            
            /* Скриване на десктоп елементите */
            #desktopInstructions, #priceInfo {
                display: none !important;
            }
        }
        
        /* Стилове за десктоп устройства */
        @media only screen and (min-width: 769px) {
            /* Скриване на мобилния бутон */
            #mobileButton {
                display: none !important;
            }
            
            /* Показване на десктоп елементите */
            #desktopInstructions, #priceInfo {
                display: block !important;
            }
        }
        
        .how-it-works {
            padding: 40px 0;
            text-align: center;
        }
        .how-it-works h2 {
            font-size: 1.8em;
            margin-bottom: 30px;
            color: #0066cc;
        }
        .steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .step {
            flex: 1;
            min-width: 250px;
            max-width: 300px;
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }
        .step-number {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #0066cc;
            color: white;
            border-radius: 50%;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        .step h3 {
            color: #0066cc;
            margin-bottom: 15px;
        }
        .benefits {
            background-color: #f5f5f5;
            padding: 40px 0;
        }
        .benefits h2 {
            text-align: center;
            font-size: 1.8em;
            margin-bottom: 30px;
            color: #0066cc;
        }
        .benefit-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }
        .benefit {
            flex: 1;
            min-width: 280px;
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }
        .benefit h3 {
            color: #0066cc;
            margin-bottom: 15px;
        }
        .faq {
            padding: 40px 0;
        }
        .faq h2 {
            text-align: center;
            font-size: 1.8em;
            margin-bottom: 30px;
            color: #0066cc;
        }
        .faq-item {
            background-color: white;
            border-radius: 5px;
            padding: 20px;
            margin-bottom: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .faq-item h3 {
            color: #0066cc;
            margin-bottom: 10px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 25px 0;
            text-align: center;
        }
        .footer-links a {
            color: white;
            margin: 0 10px;
        }
        .consent-popup {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 15px;
            text-align: center;
            z-index: 1000;
        }
        .consent-buttons {
            margin-top: 15px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }
        .consent-buttons button {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            min-width: 150px;
        }
        .accept-button {
            background-color: #4CAF50;
            color: white;
        }
        .decline-button {
            background-color: #f44336;
            color: white;
        }
        .important-note {
            font-weight: bold;
            margin: 20px 0;
            padding: 10px;
            background-color: #ffffcc;
            border-left: 5px solid #ffcc00;
        }
        
        /* Нови стилове за мобилно меню */
        .menu-item {
            padding: 12px 15px;
            margin: 5px;
            border-radius: 5px;
            text-align: center;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: inline-block;
            width: calc(50% - 10px);
            box-sizing: border-box;
        }
        
        .menu-home {
            background-color: #0055aa;
        }
        
        .menu-about {
            background-color: #0077cc;
        }
        
        .menu-faq {
            background-color: #0088dd;
        }
        
        .menu-terms {
            background-color: #0099ee;
        }
        
        .menu-privacy {
            background-color: #00aaff;
        }
        
        .menu-contact {
            background-color: #00bbff;
        }
        
        /* Стилове за бутона и инструкциите */
        .sms-button {
            display: none; /* По подразбиране скрит */
            background-color: #ff5722;
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2em;
            margin-top: 20px;
            transition: background-color 0.3s;
        }
        
        .sms-button:hover {
            background-color: #e64a19;
}
        }