        .support-page {
            max-width: 1200px;
            margin: 50px auto;
            padding: 60px 20px;
        }
        
        /* Hero */
        .support-hero {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .support-hero h1 {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .support-hero p {
            font-size: 18px;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Контакти швидкого доступу */
        .quick-contacts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .contact-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-color: #3498db;
        }
        
        .contact-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        .contact-card h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .contact-card a {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
        }
        
        .contact-card a:hover {
            text-decoration: underline;
        }
        
        .contact-card p {
            color: #7f8c8d;
            margin: 5px 0 0 0;
            font-size: 14px;
        }
        
        /* Секції */
        .support-section {
            margin-bottom: 60px;
        }
        
        .section-header {
            text-align: center;
			margin-top: 150px;
            margin-bottom: 40px;
        }
        
        .section-header h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .section-header p {
            color: #7f8c8d;
            font-size: 16px;
        }
        
        /* FAQ */
        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid #ecf0f1;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: white;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: #3498db;
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px 25px;
        }
        
        .faq-answer p {
            color: #555;
            line-height: 1.8;
            margin: 0;
        }
        
        /* Форма підтримки */
        .support-form-container {
            max-width: 700px;
            margin: 30px auto;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .form-group label .required {
            color: #e74c3c;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #dfe6e9;
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit-support {
            width: 100%;
            background: #3498db;
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-submit-support:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        }
        
        /* Робочий час */
        .working-hours {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        }
        
        .hours-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        .hours-day {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .hours-time {
            color: #7f8c8d;
        }
        
        .hours-time.closed {
            color: #e74c3c;
        }
        
        /* Сервіси */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 20px;
        }
        
        .service-card p {
            color: #7f8c8d;
            line-height: 1.6;
            margin: 0;
        }
        
        .service-card ul {
            margin: 15px 0 0 20px;
            color: #555;
        }
        
        .service-card li {
            margin: 8px 0;
        }
        
        /* Alert */
        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            font-weight: 500;
        }
        
        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        @media (max-width: 768px) {
            .support-hero h1 {
                font-size: 32px;
            }
            
            .quick-contacts {
                grid-template-columns: 1fr;
            }
            
            .support-form-container {
                padding: 25px;
            }
        }