  /* Общие стили (такие же как на главной странице) */
        :root {
            --primary: #003366;
            --secondary: #00a8ff;
            --accent: #009933;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #ffffff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            text-align: center;
        }
        
        .btn:hover {
            background: #00802b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Шапка (как на главной) */
        .header {
            background: var(--primary);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
        }
        
        .nav-menu a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            font-size: 1.05rem;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu a:hover {
            color: white;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1001;
        }
        
  
        
        .about-hero h1 {
            font-size: 3rem;
            color: white;
        }
        
        .about-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .about-section {
            margin-bottom: 60px;
        }
        
        .about-section h2 {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .about-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--secondary);
        }
        
        .about-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: var(--light);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-text {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: white;
            padding: 35px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 168, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            color: var(--secondary);
        }
        
        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .back-btn {
            display: inline-block;
            margin-top: 40px;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .back-btn:hover {
            background: #002244;
            transform: translateY(-3px);
        }
        
        /* Подвал (как на главной) */
        .footer {
            background: #002244;
            color: rgba(255, 255, 255, 0.8);
            padding: 60px 0 30px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.4rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Адаптация */
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-hero h1 {
                font-size: 2.2rem;
            }
            
            .about-section h2 {
                font-size: 1.6rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Сертификаты */
/* Sertifikātu sadaļas stili */
.certificates-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(44, 125, 160, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Sertifikātu režģis */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Sertifikātu kartītes */
.certificate-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.certificate-card:nth-child(1) { animation-delay: 0.1s; }
.certificate-card:nth-child(2) { animation-delay: 0.2s; }
.certificate-card:nth-child(3) { animation-delay: 0.3s; }
.certificate-card:nth-child(4) { animation-delay: 0.4s; }
.certificate-card:nth-child(5) { animation-delay: 0.5s; }
.certificate-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c7da0, #61a5c2, #89c2d9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-image-wrapper {
    position: relative;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.certificate-card img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.certificate-card:hover img {
    transform: scale(1.05);
}

.certificate-info {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #e9ecef;
}

.certificate-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #0a2f44;
    font-weight: 600;
}

.certificate-info p {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.certificate-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(44, 125, 160, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Navigācijas pogas */
.certificates-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.cert-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    color: #2c7da0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cert-nav-btn:hover:not(:disabled) {
    background: #2c7da0;
    border-color: #2c7da0;
    color: white;
    transform: scale(1.05);
}

.cert-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Punktu indikatori */
.cert-dots {
    display: flex;
    gap: 12px;
}

.cert-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cert-dot.active {
    width: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #2c7da0, #61a5c2);
}

.cert-dot:hover {
    background: #2c7da0;
    transform: scale(1.2);
}

/* MODĀLAIS LOGS */
.cert-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(15px);
    }
}

.cert-modal-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cert-modal-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalScaleIn 0.3s ease;
}

@keyframes modalScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cert-modal-content img {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    object-fit: contain;
    background: #f8f9fa;
}

.cert-modal-info {
    padding: 20px;
    background: white;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.cert-modal-info h3 {
    margin: 0 0 8px 0;
    color: #0a2f44;
    font-size: 1.2rem;
}

.cert-modal-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.cert-modal-close,
.cert-modal-prev,
.cert-modal-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-modal-close {
    top: -60px;
    right: 0;
}

.cert-modal-prev {
    left: -60px;
}

.cert-modal-next {
    right: -60px;
}

.cert-modal-close:hover,
.cert-modal-prev:hover,
.cert-modal-next:hover {
    background: rgba(44, 125, 160, 0.9);
    transform: scale(1.1);
}

/* Responsīvais dizains */
@media (max-width: 968px) {
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cert-modal-prev {
        left: -50px;
    }
    
    .cert-modal-next {
        right: -50px;
    }
}

@media (max-width: 640px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .cert-modal-prev,
    .cert-modal-next {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .cert-modal-prev {
        left: -45px;
    }
    
    .cert-modal-next {
        right: -45px;
    }
    
    .cert-modal-close {
        top: -50px;
        width: 35px;
        height: 35px;
    }
}

/* Loading animācija */
.certificate-card.loading {
    position: relative;
    overflow: hidden;
}

.certificate-card.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

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