 /* CSS Reset та базові стилі */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #1a5fb4;
            --secondary-color: #3584e4;
            --accent-color: #e66100;
            --light-color: #f6f5f4;
            --dark-color: #241f31;
            --text-color: #333;
            --text-light: #666;
            --border-radius: 8px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        h1 {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2rem;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }
        
        h3 {
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--accent-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }
        
        .btn-accent {
            background-color: var(--accent-color);
        }
        
        .btn-accent:hover {
            background-color: #ff7a1a;
        }
        
        /* Header */
        .header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .logo span {
            color: var(--accent-color);
        }
        
        .logo-subtitle {
            font-size: 0.8rem;
            color: var(--text-light);
            display: block;
            font-weight: 400;
            margin-top: 2px;
        }
        
        .nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-link {
            font-weight: 500;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 95, 180, 0.9), rgba(53, 132, 228, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            color: white;
            margin-bottom: 20px;
            font-size: 2.8rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.95;
        }
        
        .brand-subtitle {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 20px;
            font-weight: 500;
            backdrop-filter: blur(5px);
        }
           /* OfertaProject Section */
        .oferta-project {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        
        .oferta-content {
            max-width: 900px;
            margin: 0 auto;
            
        }
        /* About Project Section */
        .about-project {
            background-color: var(--light-color);
            padding: 80px 0;
        }
        
        .about-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        
        .about-content h2 {
            text-align: center;
        }
        
        .about-content h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .legal-note {
            background-color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            margin-top: 40px;
            text-align: left;
            border-left: 4px solid var(--accent-color);
        }
        
        /* Courses Categories Section */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
        }
        
        .courses-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
      
        .category-btn {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px 15px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border-top: 4px solid var(--primary-color);
            display: flex;
            flex-direction: column;
            height: 100%;
            font-weight: 800;
        }
        .category-btn:hover {
        transform: translateY(-5px);
        border-top: 4px solid var(--accent-color);
    }

        
        
        .category-card:hover {
            transform: translateY(-10px);
            border-top-color: var(--accent-color);
        }
        
        .category-icon {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .category-card h3 {
            flex-grow: 0;
        }
        
        .category-card p {
            flex-grow: 1;
        }
        
        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* FAQ Section */
       
    .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    background: #fff;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: white;
    transition: background-color 0.25s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* ВАЖЛИВО: тільки display none */
.faq-answer {
    display: none;
    padding: 0 20px 20px;
    line-height: 1.6;
    background: white;
    border-top: 1px solid #eee;
}





        /* Documents Section */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .document-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 25px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        
        .document-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-color);
        }
        
        .document-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 15px;
        }
        
        .footer-logo span {
            color: var(--accent-color);
        }
        
        .footer-links h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-links li i {
            margin-right: 10px;
            color: var(--accent-color);
            margin-top: 5px;
        }
        
        .footer-links a {
            color: #ccc;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .fop-info {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: var(--border-radius);
            margin-top: 15px;
            font-size: 0.9rem;
            border-left: 3px solid var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
       
        
        /* Utility classes */
        .text-center {
            text-align: center;
        }
        
        .mb-30 {
            margin-bottom: 30px;
        }
        
        .mt-30 {
            margin-top: 30px;
        }
        
        .highlight {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .badge {
            display: inline-block;
            padding: 3px 10px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }


           /* Стилі для пошукових тегів */
    .search-tag {
        display: inline-block;
        padding: 6px 15px;
        background-color: white;
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        border-radius: 20px;
        font-size: 0.9rem;
        transition: var(--transition);
        text-decoration: none;
    }
    
    .search-tag:hover {
        background-color: var(--primary-color);
        color: white;
        text-decoration: none;
    }

     /* Стилі для таблиці */

     .certificate-pricing-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* ЛІВА СТОРОНА */
.certificate-side {
    position: relative;
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
}

.certificate-image {
    max-width: 100%;
    border: 8px solid #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.certificate-image img {
    width: 100%;
    display: block;
}
    .table {
        width: 100%;
        margin-bottom: 1rem;
        background-color: transparent;
    }
    
    .table tr:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    /* Стилі для інпута пошуку */
    #searchsline:focus {
        border-color: var(--accent-color) !important;
        box-shadow: 0 0 0 3px rgba(230, 97, 0, 0.1);
    }
    
    /* Анімації */
    .pricing-card {
        transition: transform 0.3s ease;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
    }
    
    .certificate-image {
        transition: transform 0.3s ease;
    }
    
    .certificate-image:hover {
        transform: scale(1.02);
    }
    
    /* Стилі для годинних бейджів */
    .hours-badge {
        transition: all 0.3s ease;
    }
    
    .hours-badge:hover {
        transform: scale(1.05);
    }
    
    /* Стилі для акційного елемента */
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .discount-badge {
        animation: pulse 2s infinite;
    }
    
    /* Стилі для інформаційного банера на мобільних */
    @media (max-width: 768px) {
        .mobile-info-header {
            display: flex !important;
            justify-content: space-between;
            align-items: center;
        }
        
        .info-banner-content {
            display: none;
        }
        
        .info-banner-content.show {
            display: block;
        }
        
        .pricing-card {
            margin-top: 20px;
        }
        
        .certificate-container {
            margin-bottom: 30px !important;
        }
    }
    
    @media (min-width: 769px) and (max-width: 992px) {
        .certificate-container {
            margin-bottom: 30px;
        }
        
    }
     /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero {
                padding: 80px 0;
            }
            
            .section {
                padding: 60px 0;
            }
            .certificate-pricing-wrapper {
        flex-direction: column;
    }

    .certificate-side,
    .pricing-side {
        flex: 0 0 100%;
    }
    .course-card {
        flex: 1 1 45%;
        max-width: 45%;
    }
        }
        
        @media (max-width: 768px) {
            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                gap: 20px;
            }
            
            .nav.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .features-grid,
            .courses-categories-grid,
            .documents-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .section {
                padding: 50px 0;
            }
        }
    
   

        #courses-list{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;

            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

       .course-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 10px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent-color);

            display: flex;
            flex-direction: column;

            flex: 1 1 30%;
            max-width: 30%;
                
        }

    .course-card:hover {
        transform: translateY(-5px);
        border-top: 4px solid var(--secondary-color);
        background-color: var(--secondary-color);
    }

     .course-card:hover .title, .course-card:hover .time, .course-card:hover .format{
         color: var(--light-color);
     }

        
    .course-card .title{
        font-size: 18pt;
        line-height: 25px;
        margin-bottom: 0px;
        font-weight: bold;
        white-space: normal;

    }
    #section-title-kurs {
        font-size: 16pt;
    }

    .course-card .time{
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--text-color);
         font-size: 18pt;
        line-height: 25px;
        margin-bottom: 10px;
        white-space: normal;
        
    }
    .course-card .format{
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--primary-color);
         font-size: 12pt;
        line-height: 25px;
        margin-bottom: 0px;
        
        
    }
    .courses-btn {
        display: block;
        margin: 0 auto;
        margin-top: 20px;
        width: 50%;
        text-align: center;
        background-color: white;
            border-radius: var(--border-radius);
            padding: 10px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 4px solid var(--primary-color);
            font-weight: bold;
    }
      .courses-btn:hover {
            color: var(--primary-color);
            background-color: white;
            border-radius: var(--border-radius);
            padding: 10px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            border: 4px solid var(--accent-color);
    }

    @media (max-width: 992px) {
    .course-card {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 576px) {
    .course-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}