* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --primary-color: #304658;
    --accent-color: #ffe100;
    --text-light: #f3f6f8;
    --background-light: #f8f9fa;
    --text-secondary: #666;
    --border-color: #e9ecef;
    --shadow-light: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-heavy: 0 15px 40px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #ffe100, #ffd700);
    --gradient-overlay: linear-gradient(135deg, rgba(48, 70, 88, 0.8), rgba(64, 64, 65, 0.9));
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.6s ease;
}

.enhanced-header {
    background: rgba(48, 70, 88, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.enhanced-header.scrolled {
    background: rgba(48, 70, 88, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.enhanced-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.enhanced-logo {
    height: 50px;
    transition: var(--transition-fast);
}

.enhanced-logo:hover {
    transform: scale(1.05);
}

.enhanced-nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.enhanced-nav-item {
    position: relative;
}

.enhanced-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    padding: 10px 0;
    position: relative;
}

.enhanced-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.enhanced-nav-link:hover::after,
.enhanced-nav-link.active::after {
    width: 100%;
}

.enhanced-nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Enhanced Dropdown Menu */
.enhanced-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-medium);
    border-radius: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1001;
    border-top: 3px solid var(--accent-color);
}

.enhanced-nav-item:hover .enhanced-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.enhanced-dropdown-item {
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
    position: relative;
}

.enhanced-dropdown-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.enhanced-dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.enhanced-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.enhanced-dropdown-item:hover {
    background: var(--background-light);
    padding-left: 35px;
}

.enhanced-dropdown-item:hover::before {
    width: 4px;
}

.enhanced-dropdown-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: block;
    font-size: 14px;
    transition: var(--transition-fast);
}

.enhanced-dropdown-link:hover {
    color: var(--accent-color);
}

/* Enhanced CTA Button */
.enhanced-cta-button {
    background: var(--gradient-primary);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(255, 225, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.enhanced-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.enhanced-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 225, 0, 0.4);
}

.enhanced-cta-button:hover::before {
    left: 100%;
}

.enhanced-lang-switch {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 5px;
}

.enhanced-lang-btn {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 15px;
    transition: var(--transition-fast);
    text-transform: uppercase;
}

.enhanced-lang-btn.active,
.enhanced-lang-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.enhanced-hero {
    height: 100vh;
    background: var(--gradient-overlay), 
                url('https://static.tildacdn.net/tild3239-3935-4933-b539-643337326635/robin-spielmann-5936.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.enhanced-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.enhanced-hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 2;
}

.enhanced-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.enhanced-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.enhanced-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.enhanced-btn-primary, 
.enhanced-btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.enhanced-btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 225, 0, 0.3);
}

.enhanced-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.enhanced-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 225, 0, 0.4);
}

.enhanced-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.enhanced-section {
    padding: 100px 0;
    position: relative;
}

.enhanced-section.light {
    background: var(--background-light);
}

.enhanced-section.dark {
    background: var(--primary-color);
    color: white;
}

.enhanced-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.enhanced-section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.enhanced-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.enhanced-section.dark .enhanced-section-title {
    color: white;
}

.enhanced-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.enhanced-section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.enhanced-section.dark .enhanced-section-subtitle {
    color: rgba(255,255,255,0.8);
}

.enhanced-trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.enhanced-stat-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.enhanced-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.enhanced-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.enhanced-stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.enhanced-stat-label {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
}

.enhanced-trust-quote {
    text-align: center;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--primary-color);
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-left: 6px solid var(--accent-color);
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.enhanced-trust-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
}

.enhanced-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.enhanced-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.enhanced-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.enhanced-service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.enhanced-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(48, 70, 88, 0.8), rgba(255, 225, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.enhanced-service-card:hover .enhanced-service-overlay {
    opacity: 1;
}

.enhanced-service-overlay span {
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enhanced-service-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.enhanced-service-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.enhanced-service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
}

.enhanced-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 35px;
    margin-top: 80px;
}

.enhanced-portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.enhanced-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.enhanced-portfolio-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.enhanced-portfolio-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.enhanced-portfolio-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.enhanced-portfolio-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.enhanced-portfolio-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.enhanced-portfolio-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.enhanced-timeline {
    max-width: 900px;
    margin: 80px auto 0;
    position: relative;
}

.enhanced-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.enhanced-timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.enhanced-timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    width: 45%;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.enhanced-timeline-item:nth-child(odd) .enhanced-timeline-content {
    margin-left: auto;
}

.enhanced-timeline-year {
    position: absolute;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(255, 225, 0, 0.3);
}

.enhanced-timeline-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
}

.enhanced-timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.enhanced-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-medium);
}

.enhanced-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.enhanced-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: var(--transition-medium);
}

.enhanced-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.enhanced-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: var(--transition-medium);
}

.enhanced-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.enhanced-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.enhanced-mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.enhanced-mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.enhanced-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.enhanced-mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 1024px) {
    .enhanced-nav-container {
        padding: 0 15px;
    }
    
    .enhanced-nav-menu {
        gap: 20px;
    }
    
    .enhanced-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .enhanced-mobile-menu-btn {
        display: flex;
    }

    .enhanced-nav-menu {
        display: none;
    }

    .enhanced-lang-switch {
        margin-left: 10px;
    }

    .enhanced-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .enhanced-trust-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .enhanced-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .enhanced-portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .enhanced-timeline::before {
        left: 20px;
    }

    .enhanced-timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .enhanced-timeline-year {
        left: 20px;
        transform: none;
    }

    .enhanced-section {
        padding: 50px 0;
    }

    .enhanced-section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .enhanced-nav-container {
        height: 60px;
        padding: 0 10px;
    }

    .enhanced-logo {
        height: 40px;
    }

    .enhanced-cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .enhanced-btn-primary,
    .enhanced-btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }

    .enhanced-stat-item {
        padding: 25px 20px;
    }

    .enhanced-stat-number {
        font-size: 2.5rem;
    }
}

@media print {
    .enhanced-header,
    .enhanced-mobile-menu-btn,
    .enhanced-cta-button {
        display: none !important;
    }
    
    .enhanced-hero {
        height: auto;
        padding: 50px 0;
        background: white !important;
        color: black !important;
    }
    
    .enhanced-section {
        break-inside: avoid;
        padding: 30px 0;
    }
}

        .services-commercial {
            position: relative;
            width: 100%;
        }
        
     
        .services-header {
            text-align: center;
            margin-bottom: 70px;
            width: 100%;
        }
        
        .services-header .t-col {
            width: 100%;
            margin: 0 auto;
                padding-bottom: 50px;
        }
        
        .services-header__badge {
            display: inline-block;
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(241,196,15,0.3);
        }
        
        .services-title {
      font-size: 2.5rem;
    font-weight: 700;
    color: #304658;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
        }
        
        .services-subtitle {
            font-size: 1.2rem;
            color: #666666;
            line-height: 1.5;
            max-width: 600px;
            margin: 0 auto;
        }

        .btn-primary {
    color: white!important;
    box-shadow: 0 4px 15px rgba(48, 70, 88, 0.3);
    background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%)!important;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%) !important;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}


.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%) !important;
}

        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 80px;
            width: 100%;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            justify-items: center;
        }
        
        .service-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border: 1px solid #e8e9ea;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            width: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            border-color: #f1c40f;
        }
        
        .service-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            z-index: 10;
        }
        
        .service-badge--success {
            background: #27ae60;
            color: #ffffff;
        }
        
        .service-badge--urgent {
            background: #e74c3c;
            color: #ffffff;
        }
        
        .service-badge--premium {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
        }
        
        .service-badge--verified {
            background: #3498db;
            color: #ffffff;
        }
        
        .service-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .service-image__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .service-card:hover .service-image__img {
            transform: scale(1.05);
        }
        
        .service-image__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(48,70,88,0.8) 0%, rgba(48,70,88,0.6) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .service-card:hover .service-image__overlay {
            opacity: 1;
        }
        
        .service-image__icon {
            color: #f1c40f;
            transform: scale(0.8);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover .service-image__icon {
            transform: scale(1);
        }
        
        .service-content {
            padding: 30px;
        }
        
        .service-header {
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #304658;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .service-meta {
          display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: column;
        }
        
        .service-meta__item {
            font-size: 0.85rem;
        }
        
        .service-meta__label {
            color: #999999;
            margin-right: 5px;
        }
        
        .service-meta__value {
            color: #304658;
            font-weight: 600;
        }
        
        .service-description {
            font-size: 0.95rem;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .service-features {
            margin-bottom: 25px;
        }
        
        .service-feature {
            font-size: 0.9rem;
            color: #555555;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .service-feature:last-child {
            margin-bottom: 0;
        }
        
        .service-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .service-btn {
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
        }
        
        .service-btn--primary {
            background: linear-gradient(135deg, #304658 0%, #2c4052 100%);
            color: #ffffff!important;
        }
        
        .service-btn--primary:hover {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            transform: translateY(-2px);
        }
        
        .service-btn--secondary {
            background: transparent;
            color: #304658;
            border: 2px solid #304658;
        }
        
        .service-btn--secondary:hover {
            background: #304658;
            color: #ffffff!important;
        }
        
        .services-cta {
            background: linear-gradient(135deg, #304658 0%, #2c4052 100%);
            border-radius: 15px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .services-cta::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(241,196,15,0.1) 100%);
        }
        
        .services-cta__content {
            position: relative;
            z-index: 2;
        }
        
        .services-cta__title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
        }
        
        .services-cta__text {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
            line-height: 1.5;
        }
        
        .services-cta__actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .services-cta__btn {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .services-cta__btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(241,196,15,0.4);
        }
        
        .services-cta__contact {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .services-cta__phone {
            color: #f1c40f;
            font-size: 1.1rem;
            font-weight: 700;
        }
        
        @media screen and (min-width: 1400px) {
            .services-grid {
                max-width: 1400px;
                gap: 40px;
            }
        }
        
        @media screen and (max-width: 1200px) {
            .services-grid {
                gap: 25px;
                max-width: 1000px;
            }
            
            .service-card {
                max-width: 320px;
            }
            
            .service-image {
                height: 180px;
            }
        }
        
        @media screen and (max-width: 900px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 700px;
                gap: 25px;
            }
            
            .service-card {
                max-width: none;
            }
        }
        
        @media screen and (max-width: 768px) {
            .services-commercial {
                padding-top: 70px;
                padding-bottom: 70px;
            }
            
            .services-header {
                margin-bottom: 50px;
            }
            
            .services-title {
                font-size: 2rem;
            }
            
            .services-subtitle {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 60px;
                max-width: 400px;
            }
            
            .service-card {
                max-width: none;
            }
            
            .service-content {
                padding: 25px;
            }
            
            .service-actions {
                flex-direction: column;
            }
            
            .service-btn {
                width: 100%;
            }
            
            .services-cta {
                padding: 40px 25px;
            }
            
            .services-cta__title {
                font-size: 1.5rem;
            }
            
            .services-cta__actions {
                flex-direction: column;
                gap: 20px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .services-title {
                font-size: 1.7rem;
            }
            
            .service-image {
                height: 180px;
            }
            
            .service-content {
                padding: 20px;
            }
            
            .service-title {
                font-size: 1.2rem;
            }
        }
 
        .hero-banner {
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .t-cover__carrier {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 1 !important;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-overlay {
            position: absolute !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 100% !important;
            z-index: 2 !important;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative !important;
            z-index: 10 !important;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none; 
        }
        
        .hero-content * {
            pointer-events: auto;
        }
        
        .hero-content__container {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 11;
        }
        
        .hero-logo {
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.2s forwards;
            position: relative;
            z-index: 12;
        }
        
        .hero-logo__img {
            max-width: 380px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff !important;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.4s forwards;
            position: relative;
            z-index: 12;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255,255,255,0.9) !important;
            margin-bottom: 50px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 1px 5px rgba(0,0,0,0.2);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.6s forwards;
            position: relative;
            z-index: 12;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 60px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.8s forwards;
            position: relative;
            z-index: 12;
        }
        
        .hero-btn {
            display: inline-flex;
            align-items: center;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-width: 200px;
            justify-content: center;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 13;
            cursor: pointer;
        }
        
        .hero-btn__text {
            position: relative;
            z-index: 15;
            transition: transform 0.3s ease;
        }
        
        .hero-btn__icon {
            margin-left: 10px;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            position: relative;
            z-index: 15;
        }
        
        .hero-btn--primary {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658 !important;
            box-shadow: 0 8px 25px rgba(241,196,15,0.3);
        }
        
        .hero-btn--primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e1b000 0%, #f39c12 100%);
            transition: left 0.4s ease;
            z-index: 14;
        }
        
        .hero-btn--primary:hover::before {
            left: 0;
        }
        
        .hero-btn--primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(241,196,15,0.4);
        }
        
        .hero-btn--secondary {
            background: rgba(255,255,255,0.15);
            color: #ffffff !important;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }
        
        .hero-btn--secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255,255,255,0.25);
            transition: left 0.4s ease;
            z-index: 14;
        }
        
        .hero-btn--secondary:hover::before {
            left: 0;
        }
        
        .hero-btn--secondary:hover {
            transform: translateY(-3px);
            border-color: rgba(255,255,255,0.5);
            box-shadow: 0 8px 25px rgba(255,255,255,0.2);
        }
        
        .hero-btn:hover .hero-btn__text {
            transform: translateX(-5px);
        }
        
        .hero-btn:hover .hero-btn__icon {
            transform: translateX(5px);
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 1s forwards;
            position: relative;
            z-index: 12;
        }
        
        .hero-stats__item {
            text-align: center;
            color: #ffffff;
        }
        
        .hero-stats__number {
            font-size: 3rem;
            font-weight: 800;
            color: #f1c40f !important;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .hero-stats__text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8) !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }
        
        .hero-arrow {
            position: absolute !important;
            bottom: 40px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 15 !important;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.2s forwards;
        }
        
        .hero-arrow__link {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .hero-arrow__link:hover {
            color: #f1c40f;
            transform: translateY(-5px);
        }
        
        .hero-arrow__icon {
            width: 40px;
            height: 40px;
            border: 2px solid currentColor;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            animation: bounce 2s infinite;
        }
        
        .hero-arrow__text {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            color: rgba(255,255,255,0.7) !important;
        }
        
        .t-cover .hero-content {
            position: relative !important;
            z-index: 10 !important;
        }
        
        .t-cover__wrapper {
            position: relative !important;
            z-index: 11 !important;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        .hero-banner::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #304658 0%, #2c4052 100%);
            z-index: 0;
            opacity: 1;
            transition: opacity 1s ease-out;
        }
        
        .hero-banner.loaded::after {
            opacity: 0;
        }
        
        @media screen and (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-stats {
                gap: 40px;
            }
            
            .hero-stats__number {
                font-size: 2.5rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            .hero-content__container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 2.2rem !important;
                margin-bottom: 20px;
            }
            
            .hero-subtitle {
                font-size: 1.1rem !important;
                margin-bottom: 40px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                margin-bottom: 40px;
            }
            
            .hero-btn {
                width: 100%;
                max-width: 280px;
                padding: 16px 30px;
                font-size: 1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 25px;
                align-items: center;
            }
            
            .hero-stats__item {
                display: flex;
                align-items: center;
                gap: 20px;
            }
            
            .hero-stats__number {
                font-size: 2rem !important;
                margin-bottom: 0;
            }
            
            .hero-stats__text {
                font-size: 0.8rem !important;
                text-align: left;
            }
            
            .hero-logo__img {
                max-width: 150px;
            }
            
            .hero-arrow {
                bottom: 30px !important;
            }
        }
        
        @media screen and (max-width: 480px) {
            .hero-title {
                font-size: 1.8rem !important;
            }
            
            .hero-subtitle {
                font-size: 1rem !important;
            }
            
            .hero-stats__item {
                flex-direction: column;
                gap: 5px;
            }
            
            .hero-stats__text {
                text-align: center !important;
            }
        }
        
        .hero-content h1,
        .hero-content .hero-title {
            color: #ffffff !important;
        }
        
        .hero-content .hero-subtitle {
            color: rgba(255,255,255,0.9) !important;
        }
        
        .hero-stats__number {
            color: #f1c40f !important;
        }
        
        .hero-stats__text {
            color: rgba(255,255,255,0.8) !important;
        }
        
        .hero-btn {
            position: relative;
            z-index: 999 !important;
        }


         .trust-section {
            position: relative;
            width: 100%;
        }
        
        .trust-header {
            margin-bottom: 70px;
            text-align: center;
        }
        
        .trust-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #304658;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        
        .trust-subtitle {
            font-size: 1.2rem;
            color: #666666;
            line-height: 1.5;
            font-weight: 400;
        }
        
        .trust-stats {
            margin-bottom: 80px;
            width: 100%;
        }
        
        .trust-stats__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            width: 100%;
            justify-items: center;
            align-items: stretch;
            padding-top: 65px;
        }
        
        .trust-stats__item {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        
        .trust-stats__card {
            background: #ffffff;
            border: 2px solid #e8e9ea;
            border-radius: 8px;
            padding: 40px 25px;
            text-align: center;
            height: 200px;
            width: 100%;
            max-width: 220px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .trust-stats__card:hover {
            border-color: #f1c40f;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(48,70,88,0.1);
        }
        
        .trust-stats__card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #f1c40f 0%, #e1b000 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .trust-stats__card:hover::before {
            opacity: 1;
        }
        
        .trust-stats__icon {
            color: #304658;
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }
        
        .trust-stats__card:hover .trust-stats__icon {
            color: #f1c40f;
        }
        
        .trust-stats__number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #304658;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .trust-stats__text {
            font-size: 0.95rem;
            color: #666666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.3;
        }
        
        .trust-quote {
            text-align: center;
        }
        
        .trust-quote__container {
            background: #304658;
            border-radius: 8px;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .trust-quote__container::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(241,196,15,0.1) 100%);
        }
        
        .trust-quote__content {
            position: relative;
            z-index: 2;
        }
        
        .trust-quote__mark {
            font-size: 4rem;
            color: #f1c40f;
            font-family: serif;
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .trust-quote__text {
            font-size: 1.4rem;
            color: #ffffff;
            line-height: 1.5;
            font-weight: 400;
            max-width: 700px;
            margin: 0 auto;
        }
        
        @media screen and (min-width: 1400px) {
            .trust-stats__grid {
                max-width: 1200px;
            }
        }
        
        @media screen and (max-width: 1200px) {
            .trust-stats__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                max-width: 600px;
            }
            
            .trust-stats__card {
                max-width: none;
            }
            
            .trust-title {
                font-size: 2.2rem;
            }
        }
        
        @media screen and (max-width: 900px) {
            .trust-stats__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                max-width: 500px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .trust-section {
                padding-top: 70px;
                padding-bottom: 70px;
            }
            
            .trust-header {
                margin-bottom: 50px;
            }
            
            .trust-title {
                font-size: 1.9rem;
                margin-bottom: 15px;
            }
            
            .trust-subtitle {
                font-size: 1.1rem;
            }
            
            .trust-stats {
                margin-bottom: 60px;
            }
            
            .trust-stats__grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 300px;
            }
            
            .trust-stats__card {
                padding: 35px 20px;
                height: 180px;
                max-width: none;
            }
            
            .trust-stats__number {
                font-size: 2.4rem;
            }
            
            .trust-stats__text {
                font-size: 0.9rem;
            }
            
            .trust-quote__container {
                padding: 40px 25px;
            }
            
            .trust-quote__text {
                font-size: 1.2rem;
            }
            
            .trust-quote__mark {
                font-size: 3rem;
                margin-bottom: 15px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .trust-title {
                font-size: 1.6rem;
            }
            
            .trust-subtitle {
                font-size: 1rem;
            }
            
            .trust-stats__card {
                padding: 30px 15px;
                height: 160px;
            }
            
            .trust-stats__number {
                font-size: 2.2rem;
            }
            
            .trust-stats__icon svg {
                width: 35px;
                height: 35px;
            }
            
            .trust-quote__text {
                font-size: 1.1rem;
            }
        }


          .geography-countries {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .countries-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .countries-row:last-child {
            margin-bottom: 0;
        }
        
        .country-item {
            flex: 1;
            max-width: 160px;
        }
        
        .country-btn {
            background-color: rgba(255,255,255,0.1);
            color: #ffffff;
            border: 1px solid rgba(255,255,255,0.3);
            padding: 20px 16px;
            border-radius: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-family: Arial, sans-serif;
            text-align: center;
            width: 100%;
            box-sizing: border-box;
            backdrop-filter: blur(5px);
        }
        
        .country-name {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 6px;
            line-height: 1.2;
        }
        
        .country-count {
            font-size: 13px;
            opacity: 0.8;
            font-weight: 300;
            line-height: 1.2;
        }
        
        .country-btn:hover {
            background-color: rgba(255,255,255,0.2) !important;
            border-color: rgba(255,255,255,0.5);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }
        
        /* Адаптивность */
        @media screen and (max-width: 1200px) {
            .geography-countries {
                max-width: 900px;
            }
            .country-item {
                max-width: 140px;
            }
            .country-btn {
                padding: 18px 14px;
            }
        }
        
        @media screen and (max-width: 960px) {
            .countries-row {
                gap: 15px;
                margin-bottom: 20px;
            }
            .country-item {
                max-width: 120px;
            }
            .country-btn {
                padding: 16px 12px;
            }
            .country-name {
                font-size: 14px;
            }
            .country-count {
                font-size: 12px;
            }
        }
        
        @media screen and (max-width: 768px) {
            .geography-countries {
                padding: 0 20px;
            }
            .countries-row {
                flex-wrap: wrap;
                gap: 12px;
            }
            .country-item {
                max-width: 140px;
                min-width: 120px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .countries-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            .country-item {
                max-width: none;
            }
            .country-btn {
                padding: 16px 12px;
            }
        }

          .t-section__descr {max-width:560px;}
        #rec_projects .t-section__title {margin-bottom:20px;}
        #rec_projects .t-section__descr {margin-bottom:40px;}
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .project-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }
        
        .project-link:hover {
            color: #304658 !important;
        }
        
        .t-btn:hover {
            background-color: #ffd700 !important;
            transform: translateY(-2px);
        }
        
        @media screen and (max-width: 960px) {
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }
            #rec_projects .t-section__title {margin-bottom:15px;}
            #rec_projects .t-section__descr {margin-bottom:30px;}
        }


          .t-section__descr {max-width:560px;}
        #rec_reviews .t-section__title {margin-bottom:20px;}
        #rec_reviews .t-section__descr {margin-bottom:40px;}
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .review-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            margin-bottom: 20px;
        }
        
        .star {
            color: #ffe100;
            font-size: 18px;
            margin-right: 2px;
        }
        
        .review-text {
            margin-bottom: 25px;
        }
        
        .review-text p {
            color: #444;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #304658, #1f5bff);
            flex-shrink: 0;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 600;
            color: #304658;
            font-size: 16px;
            margin-bottom: 4px;
        }
        
        .author-position {
            color: #666;
            font-size: 13px;
            margin-bottom: 2px;
        }
        
        .author-company {
            color: #1f5bff;
            font-size: 13px;
            font-weight: 500;
        }
        
        @media screen and (max-width: 960px) {
            .reviews-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                padding: 0 20px;
            }
            
            .review-card {
                padding: 25px;
            }
            
            #rec_reviews .t-section__title {margin-bottom:15px;}
            #rec_reviews .t-section__descr {margin-bottom:30px;}
        }
        
        @media screen and (max-width: 640px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .review-text p {
                font-size: 14px;
            }
        }


        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px 0;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, #ffe100, rgba(255,225,0,0.3));
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
        }
        
        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
        }
        
        .year-circle {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%)!important;
            color: #304658;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(255,225,0,0.3);
        }
        
        .current-year {
            background: #ffffff !important;
            color: #304658 !important;
            box-shadow: 0 4px 20px rgba(255,255,255,0.4) !important;
        }
        
        .timeline-content {
            width: 40%;
            padding: 25px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }
        
        .timeline-left {
            margin-right: auto;
            margin-left: 0;
        }
        
        .timeline-right {
            margin-left: auto;
            margin-right: 0;
        }
        
        .timeline-title {
            color: #ffffff;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            font-family: Arial, sans-serif;
        }
        
        .timeline-description {
            color: rgba(255,255,255,0.9);
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
            font-family: Arial, sans-serif;
        }
        
        @media screen and (max-width: 960px) {
            .timeline-line {
                left: 30px;
            }
            
            .timeline-item {
                margin-bottom: 60px;
            }
            
            .timeline-year {
                left: 30px;
            }
            
            .year-circle {
                width: 60px;
                height: 60px;
                font-size: 14px;
            }
            
            .timeline-content {
                width: calc(100% - 100px);
                margin-left: 100px !important;
                margin-right: 0 !important;
            }
            
            .timeline-title {
                font-size: 18px;
            }
            
            .timeline-description {
                font-size: 13px;
            }
        }
        
        @media screen and (max-width: 640px) {
            .timeline-container {
                padding: 20px 15px;
            }
            
            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                padding: 20px;
            }
            
            .year-circle {
                width: 50px;
                height: 50px;
                font-size: 12px;
            }
        }


         .form-glass-container {
            background: linear-gradient(135deg, rgba(48, 70, 88, 0.15) 0%, rgba(56, 79, 99, 0.9) 100%);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 50px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        
        .form-glass-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-header .t698__title {
            color: #ffffff;
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .form-header .t698__descr {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            line-height: 1.5;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .form-fields-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 35px;
        }
        
        .form-field {
            position: relative;
        }
        
        .form-field-full {
            grid-column: 1 / -1;
        }
        
        .custom-input-wrapper, .custom-select-wrapper {
            position: relative;
        }
        
        .custom-input, .custom-select {
            width: 100%;
            padding: 18px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            color: #ffffff;
            font-size: 16px;
            font-family: inherit;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-sizing: border-box;
        }
        
        .custom-select {
            cursor: pointer;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 16px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 50px;
            appearance: none;
        }
        
        .custom-select option {
            background: #304658;
            color: #ffffff;
            padding: 10px;
        }
        
        .custom-textarea {
            min-height: 120px;
            resize: vertical;
            font-family: inherit;
        }
        
        .custom-input:focus, .custom-select:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 225, 0, 0.6);
            box-shadow: 0 0 25px rgba(255, 225, 0, 0.3);
            transform: translateY(-2px);
        }
        
        .custom-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .input-focus-border, .select-focus-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 16px;
            background: linear-gradient(45deg, transparent, rgba(255, 225, 0, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .custom-input:focus + .input-focus-border,
        .custom-select:focus + .select-focus-border {
            opacity: 1;
        }
        
        .form-submit-wrapper {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .custom-submit-btn {
            position: relative;
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(255, 225, 0, 0.3);
            min-width: 200px;
        }
        
        .btn-gradient {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .custom-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 225, 0, 0.4);
        }
        
        .custom-submit-btn:hover .btn-gradient {
            left: 100%;
        }
        
        .custom-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        .btn-text {
            position: relative;
            z-index: 2;
        }
        
        .form-footer {
            text-align: center;
        }
        
        .form-footer .t698__form-bottom-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }
        
        .form-footer .t698__form-bottom-text a {
            color: #e1b000 !important;
            text-decoration: none;
        }
        
        .form-footer .t698__form-bottom-text a:hover {
            text-decoration: underline;
        }
        
        .t-input-error {
            color: #ff6b6b;
            font-size: 12px;
            margin-top: 8px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .js-successbox {
            background: rgba(76, 175, 80, 0.2);
            border: 1px solid rgba(76, 175, 80, 0.3);
            color: #ffffff;
            padding: 20px;
            border-radius: 16px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
            text-align: center;
        }
        
        .form-loading .custom-submit-btn {
            background: linear-gradient(135deg, #ccc, #999);
            cursor: not-allowed;
        }
        
        .form-loading .custom-input,
        .form-loading .custom-select {
            pointer-events: none;
            opacity: 0.7;
        }
        
        @media screen and (max-width: 768px) {
            .form-glass-container {
                padding: 30px 25px;
                margin: 20px;
                border-radius: 20px;
                max-width: calc(100% - 40px);
            }
            
            .form-fields-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .form-header .t698__title {
                font-size: 28px;
            }
            
            .form-header .t698__descr {
                font-size: 16px;
            }
            
            .custom-input, .custom-select {
                padding: 16px 20px;
                font-size: 15px;
            }
            
            .custom-select {
                padding-right: 45px;
            }
            
            .custom-submit-btn {
                padding: 16px 40px;
                font-size: 16px;
                width: 100%;
            }
        }
        
        @media screen and (max-width: 480px) {
            .form-glass-container {
                padding: 25px 20px;
            }
            
            .custom-input, .custom-select {
                padding: 14px 18px;
            }
        }


        .contact-info-header {
            margin-bottom: 80px;
        }
        
        .contact-info-title-wrapper {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .contact-info-main-title {
            font-size: 42px;
            font-weight: 700;
            color: #304658;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .contact-info-subtitle {
            font-size: 18px;
            color: #6c757d;
            line-height: 1.6;
            margin: 0;
        }
        
        .contact-cards-container {
            position: relative;
        }
        
        .contact-cards-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .contact-card {
            position: relative;
            flex: 0 1 300px;
            max-width: 320px;
        }
        
        .contact-card-inner {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 10px 30px rgba(48, 70, 88, 0.1);
            border: 1px solid rgba(48, 70, 88, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .contact-card-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #ffd700;
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .contact-card:hover .contact-card-inner {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(48, 70, 88, 0.15);
        }
        
        .contact-card:hover .contact-card-inner::before {
            transform: scaleX(1);
        }
        
        /* Contact Icon */
        .contact-icon-wrapper {
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-icon-phone {
            background: #304658;
        }
        
        .contact-icon-address {
            background: #304658;
        }
        
        .contact-icon-email {
            background: #304658;
        }
        
        .contact-card:hover .contact-icon {
            transform: scale(1.1);
        }
        
        .contact-card-title {
            font-size: 22px;
            font-weight: 600;
            color: #304658;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .contact-card-content {
            font-size: 16px;
            line-height: 1.6;
        }
        
        .contact-link {
            color: #304658;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .contact-link:hover {
            color: #ffd700;
            text-decoration: none;
        }
        
        .address-text {
            color: #6c757d;
            line-height: 1.6;
        }
        
        @media screen and (max-width: 768px) {
            .contact-info-header {
                margin-bottom: 60px;
            }
            
            .contact-info-main-title {
                font-size: 32px;
                margin-bottom: 16px;
            }
            
            .contact-info-subtitle {
                font-size: 16px;
            }
            
            .contact-cards-grid {
                flex-direction: column;
                align-items: center;
                gap: 30px;
                padding: 0 20px;
            }
            
            .contact-card {
                width: 100%;
                max-width: 400px;
            }
            
            .contact-card-inner {
                padding: 35px 25px;
            }
            
            .contact-icon {
                width: 70px;
                height: 70px;
            }
            
            .contact-card-title {
                font-size: 20px;
            }
        }
        
        @media screen and (max-width: 480px) {
            .contact-info-main-title {
                font-size: 28px;
            }
            
            .contact-card-inner {
                padding: 30px 20px;
            }
            
            .contact-icon {
                width: 60px;
                height: 60px;
            }
            
            .contact-card-title {
                font-size: 18px;
            }
        }


        .modern-footer {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .footer-main {
            padding: 60px 0 40px;
            position: relative;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            align-items: start;
        }

        .footer-company {
            max-width: 350px;
        }

        .footer-logo {
            margin-bottom: 25px;
        }

        .footer-logo-img {
            height: 45px;
            width: auto;
            filter: invert(1);
        }

        .footer-description {
            color: #ffffff!important;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .footer-social-title {
            color: #ffd700;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .footer-social-links {
            display: flex;
            gap: 15px;
        }

        .footer-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%)!important;
            border-radius: 12px;
            color: #304658!important;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-social-link:hover {
            background: #ffd700;
            color: #304658;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }

        .footer-column-title {
            color:  #e1b000;
            font-size: 23px;
            font-weight: 600;
            margin-bottom: 25px;
            margin-top: 0;
            position: relative;
        }

        .footer-column-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #e1b000;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links ul {
            padding-left: 0px!important;
        }

        .footer-link {
            color: #ffffff!important;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: all 0.3s ease;
            display: block;
            padding: 5px 0;
        }

        .t-records ul {
            padding-left: 0px!important;
            margin-top: 0;
            margin-bottom: 10px;
        }

        .footer-link:hover {
            color: #ffd700;
            transform: translateX(5px);
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-contact-item {
            display: flex;
                align-items: center;
            gap: 12px;
        }

        .footer-contact-icon {
            display: flex;
            align-items: center;
            width: 36px;
            height: 36px;
            background: rgb(0 0 0 / 0%);
            border-radius: 8px;
            color: #e1b000;
            flex-shrink: 0;
            margin-top: 2px;
            justify-content: flex-start;
        }

        .footer-contact-link {
            color: #ffffff !important;
            text-decoration: none;
            font-size: 15px;
            font-weight: 400;
            transition: color 0.3s ease;
            line-height: 1.5;
        }

        .footer-contact-link:hover {
            color: #ffd700;
        }

        .footer-contact-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            line-height: 1.5;
        }

        .footer-bottom {
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            margin: 0;
        }

        .footer-copyright p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .footer-legal-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal-link:hover {
            color: #ffd700;
        }

        .footer-separator {
            color: rgba(255, 255, 255, 0.3);
            font-size: 14px;
        }

        @media screen and (max-width: 1200px) {
            .footer-container {
                padding: 0 30px;
            }
            
            .footer-grid {
                gap: 40px;
            }
        }

        @media screen and (max-width: 968px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .footer-company {
                max-width: none;
            }
        }

        @media screen and (max-width: 768px) {
            .footer-main {
                padding: 50px 0 30px;
            }
            
            .footer-container {
                padding: 0 20px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: left;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-legal {
                justify-content: center;
            }
        }

        @media screen and (max-width: 480px) {
            .footer-main {
                padding: 40px 0 25px;
            }
            
            .footer-container {
                padding: 0 15px;
            }
            
            .footer-grid {
                gap: 30px;
            }
            
            .footer-social-links {
                justify-content: flex-start;
            }
            
            .footer-legal {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer-separator {
                display: none;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .footer-column {
            animation: fadeInUp 0.6s ease forwards;
        }

        .footer-column:nth-child(2) {
            animation-delay: 0.1s;
        }

        .footer-column:nth-child(3) {
            animation-delay: 0.2s;
        }

        .footer-column:nth-child(4) {
            animation-delay: 0.3s;
        }


        .tmenu-mobile {
            background-color: #304658;
            display: none;
            width: 100%;
            top: 0;
            z-index: 990;
            position: fixed;
        }
        
        .tmenu-mobile__text {
            color: #fff;
            font-weight: 600;
        }
        
        .tmenu-mobile__container {
            min-height: 70px;
            padding: 20px;
            position: relative;
            box-sizing: border-box;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .tmenu-mobile__list {
            background-color: #304658;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-in-out;
        }
        
        .tmenu-mobile__list.active {
            max-height: 600px;
        }
        
        .tmenu-mobile__items {
            list-style: none;
            margin: 0;
            padding: 0 20px 20px 20px;
        }
        
        .tmenu-mobile__item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .tmenu-mobile__link {
            display: block;
            padding: 15px 0;
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        .tmenu-mobile__link:hover {
            color: #f1c40f;
        }
        
        .tmenu-mobile__item_cta .tmenu-mobile__link,
        .tmenu-mobile__item_lang .tmenu-mobile__link {
            background-color: #f1c40f;
            color: #304658;
            padding: 12px 20px;
            border-radius: 25px;
            text-align: center;
            margin-top: 10px;
            font-weight: 600;
        }
        
        .tmenu-mobile__item_lang .tmenu-mobile__link {
            background-color: rgba(255,255,255,0.1);
            color: #fff;
            border: 1px solid rgba(255,255,255,0.3);
        }
        
        .tmenu-mobile__dropdown {
            list-style: none;
            margin: 0;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .tmenu-mobile__dropdown.active {
            max-height: 200px;
        }
        
        .tmenu-mobile__dropdown-link {
            display: block;
            padding: 10px 20px;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
        }
        
        .tmenu-mobile__lang-dropdown.active {
            max-height: 120px;
        }
        
        .t-menuburger {
            position: relative;
            flex-shrink: 0;
            width: 28px;
            height: 20px;
            padding: 0;
            border: none;
            background-color: transparent;
            outline: none;
            transform: rotate(0deg);
            transition: transform .5s ease-in-out;
            cursor: pointer;
            z-index: 999;
        }
        
        .t-menuburger span {
            display: block;
            position: absolute;
            width: 100%;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
            height: 3px;
            background-color: #304658;
        }
        
        .t-menuburger span:nth-child(1) { top: 0px; }
        .t-menuburger span:nth-child(2), .t-menuburger span:nth-child(3) { top: 8px; }
        .t-menuburger span:nth-child(4) { top: 16px; }
        
        .t-menuburger-opened span:nth-child(1) { top: 8px; width: 0%; left: 50%; }
        .t-menuburger-opened span:nth-child(2) { transform: rotate(45deg); }
        .t-menuburger-opened span:nth-child(3) { transform: rotate(-45deg); }
        .t-menuburger-opened span:nth-child(4) { top: 8px; width: 0%; left: 50%; }
        
        #rec75324378 .t228 {
            box-shadow: 0px 2px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .t228__nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            width: 100%;
        }
        
        .t228__logo-section {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
        }
        
        .t228__imgwrapper {
            display: flex;
            align-items: center;
        }
        
        .t228__nav-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .t228__nav-container {
            display: flex;
            align-items: center;
        }
        
        .t228__nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 35px;
            margin-bottom: 0px!important;
        }
        
        .t228__nav-item {
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .t228__nav-link {
            position: relative;
            font-size: 15px;
            color: #304658;
            font-weight: 500;
            font-family: 'Arial', sans-serif;
            text-decoration: none;
            padding: 10px 0;
            transition: color 0.3s ease-in-out;
            white-space: nowrap;
        }
        
        .t228__nav-link:hover {
            color: #f1c40f;
        }
        
        .t228__nav-link.t-active {
            color: #f1c40f !important;
            font-weight: 600;
        }
        
        .t228__nav-item_dropdown {
            position: relative;
        }
        
        .t228__nav-dropdown-btn {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 15px;
            color: #304658;
            font-weight: 500;
            font-family: 'Arial', sans-serif;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .t228__nav-dropdown-btn:hover {
            color: #f1c40f;
        }
        
        .t228__nav-arrow {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .t228__nav-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            min-width: 320px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 15px;
        }
        
        .t228__nav-item_dropdown:hover .t228__nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .t228__nav-item_dropdown:hover .t228__nav-arrow {
            transform: rotate(180deg);
        }
        
        .t228__nav-dropdown-container {
            padding: 20px;
        }
        
        .t228__nav-dropdown-link {
            display: block;
            padding: 15px 0;
            text-decoration: none;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .t228__nav-dropdown-link:last-child {
            border-bottom: none;
        }
        
        .t228__nav-dropdown-link:hover {
            transform: translateX(5px);
        }
        
        .t228__nav-dropdown-title {
            font-size: 16px;
            font-weight: 600;
            color: #304658;
            margin-bottom: 5px;
            transition: color 0.3s ease;
        }
        
        .t228__nav-dropdown-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.4;
        }
        
        .t228__nav-dropdown-link:hover .t228__nav-dropdown-title {
            color: #f1c40f;
        }
        
        .t228__actions-section {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .t228__cta-btn {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(241,196,15,0.3);
            white-space: nowrap;
        }
        
        .t228__cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(241,196,15,0.4);
            background: linear-gradient(135deg, #e1b000 0%, #f1c40f 100%);
        }
        
        .t228__lang-wrapper {
            position: relative;
        }
        
        .t228__lang-dropdown {
            position: relative;
        }
        
        .t228__lang-btn {
            display: flex;
            align-items: center;
            background: none;
            border: 1px solid rgba(48, 70, 88, 0.2);
            border-radius: 20px;
            padding: 8px 15px;
            cursor: pointer;
            font-size: 14px;
            color: #304658;
            font-weight: 500;
            font-family: 'Arial', sans-serif;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .t228__lang-btn:hover {
            background-color: #f8f9fa;
            border-color: #f1c40f;
        }
        
        .t228__lang-btn.active {
            background-color: #304658;
            color: #fff;
        }
        
        .t228__lang-btn i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .t228__lang-current {
            margin-right: 8px;
        }
        
        .t228__lang-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .t228__lang-btn.active .t228__lang-arrow {
            transform: rotate(180deg);
        }
        
        .t228__lang-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            min-width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            margin-top: 5px;
            overflow: hidden;
        }
        
        .t228__lang-dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .t228__lang-option {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            text-decoration: none;
            color: #304658;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .t228__lang-option:last-child {
            border-bottom: none;
        }
        
        .t228__lang-option:hover {
            background-color: #f8f9fa;
        }
        
        .t228__lang-flag {
            font-weight: 600;
            margin-right: 10px;
            color: #f1c40f;
        }
        
        .t228__lang-name {
            color: #304658;
        }
        
        @media screen and (max-width: 1400px) {
            .t228__maincontainer {
                max-width: 1140px;
                padding: 0 30px;
            }
            
            .t228__nav-list {
                gap: 25px;
            }
        }
        
        @media screen and (max-width: 1200px) {
            .t228__maincontainer {
                max-width: 960px;
                padding: 0 20px;
            }
            
            .t228__nav-list {
                gap: 20px;
            }
            
            .t228__nav-link {
                font-size: 14px;
            }
            
            .t228__cta-btn {
                font-size: 13px;
                padding: 10px 20px;
            }
            
            .t228__nav-dropdown {
                min-width: 280px;
            }
        }
        
        @media screen and (max-width: 980px) {
            .tmenu-mobile__menucontent_hidden {
                display: none;
                height: 100%;
            }
            
            .tmenu-mobile {
                display: block;
            }
            
            body.menu-opened {
                overflow: hidden;
            }
        }