/* Service Detail Page Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(242, 242, 251, 1);
    font-family: 'Unbounded', sans-serif;
    font-weight: 350;
    line-height: 1.6;
    color: rgb(242, 242, 251);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
}

/* Buttons */
.btn {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
    color: white;
}

.btn-primary:hover {
    background: transparent;
    border: 2px solid rgb(255, 255, 255);
    color: #ffffff;
}

/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(0, 0, 0, 0.96) 20%, 
        rgba(0, 0, 0, 0.94) 50%, 
        rgba(0, 0, 0, 0.90) 100%, 
        rgba(0, 0, 0, 0.80) 100%,
        rgba(0, 0, 0, 0.60) 100%,
        rgba(0, 0, 0, 0.30) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0 5%;
    transition: all 0.4s ease;
    height: 110px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    height: 110px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00BFFF;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-button, .header2-button {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.header-button:hover, .header2-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    position: relative;
    padding: 40px 0 30px;
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.4;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo .logo-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: white;
}

.footer-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #00BFFF;
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-button-common {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-button-outline-style {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-button-outline-style:hover {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.footer-button-primary-style {
    background: transparent;
    color: #333333;
}

.footer-button-primary-style:hover {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.footer-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-family: 'Unbounded', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: white;
}

/* Service Detail Hero Section - Now just header area */
.service-detail-hero {
    padding: 120px 0 40px 0;
    background: rgba(242, 242, 251, 1);
}

.service-detail-header {
    max-width: 1578px; /* Увеличено на 378px (100мм) */
    margin: 0 auto;
    padding: 0 20px;
}

/* Service Title Card */
.service-title-card {
    background-image: url('assets/rectangle-6736.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px !important;
    overflow: visible !important;
    margin-top: 1cm !important;
    padding: 2px 50px !important; /* Уменьшено padding, чтобы карточка стала еще тоньше */
    color: white;
    margin-bottom: 0 !important; /* Убираем нижний отступ, чтобы карточка стала тоньше */
    height: 300px !important; /* Увеличиваем высоту карточки на 20мм (76px) */
    min-height: 256px !important; /* Обеспечиваем минимальную высоту */
    display: flex; /* Для выравнивания содержимого и иконки */
    align-items: center; /* Вертикальное выравнивание по центру */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
}

.back-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    display: inline-block;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #00BFFF;
}

.service-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.service-subtitle {
    font-size: 1 rem;
    line-height: 1.4;
    opacity: 0.85;
    font-weight: 300;
    margin: 0;
    max-width: 70%;
    color: white;
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 30px; /* Увеличил отступ */
    max-height: 90px; /* Ограничиваю максимальную высоту, чтобы иконка не выходила за пределы карточки */
}

.service-header-text {
    flex-grow: 1;
    color: white;
}

.service-header-icon {
    flex-shrink: 0;
    width: auto !important; /* Автоматическая ширина для сохранения пропорций */
    height: 238px !important; /* Увеличиваю контейнер на 1см больше для новых иконок */
    background: none !important; /* Убираю фон */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: none !important; /* Убираю эффект матового стекла */
    position: relative; /* Для возможности выхода за пределы */
    z-index: 10; /* Поднимаю иконку над плиткой */
    overflow: visible !important; /* Разрешаю выход за пределы */
}

.service-header-icon img {
    width: auto !important; /* Автоматическая ширина для сохранения пропорций */
    height: 218px !important; /* Увеличиваю иконку на 1см (38px) в высоту */
    object-fit: contain;
    position: relative;
    z-index: 15; /* Поднимаю картинку ещё выше */
    transform: translateY(-10px); /* Немного поднимаю иконку вверх для выхода за пределы */
}

/* Service Content Section */
.service-content {
    padding: 0 0 100px 0;
    background: rgba(242, 242, 251, 1);
}

.service-layout {
    max-width: 1578px; /* Увеличено на 378px (100мм) */
    margin: 0 auto;
    padding: 0 20px;
}

/* Three Tiles Layout */
.service-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-tile {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-tile-title {
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

/* Убираем цветные линии под заголовками */

.service-tile-content {
    color: #555;
    line-height: 1.7;
}

.service-tile-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-tile-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-tile-content li {
    margin-bottom: 12px;
    font-size: 1 rem;
    line-height: 1.6;
}

/* Простые стили для всех карточек */

/* Problem Tile - чисто белая с черным текстом */
.service-tile.problem-tile {
    background: white;
    color: #000;
}

.service-tile.problem-tile .service-tile-title {
    color: #000;
}

.service-tile.problem-tile .service-tile-content {
    color: #000;
}

/* Solution Tile - белая с черным текстом, заголовок "Solution" градиентный */
.service-tile.solution-tile {
    background: white;
    color: #000;
}

.service-tile.solution-tile .service-tile-title {
    background: linear-gradient(135deg, #0984e3 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-tile.solution-tile .service-tile-content {
    color: #000;
}

/* Result Tile - с фоном Rectangle 6735 и белым текстом */
.service-tile.result-tile {
    background-image: url('assets/rectangle-6735.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    color: white !important; /* Устанавливаем белый цвет для всего содержимого плитки */
}

.service-tile.result-tile h2, .service-tile.result-tile h3, .service-tile.result-tile p, .service-tile.result-tile strong, .service-tile.result-tile li {
    color: white !important; /* Обеспечиваем, что заголовки и параграфы тоже белые */
}

.service-tile.result-tile .service-tile-title {
    color: white;
}

.service-tile.result-tile .service-tile-content {
    color: white;
}

.service-tile.result-tile .service-tile-content p,
.service-tile.result-tile .service-tile-content h3,
.service-tile.result-tile .service-tile-content .metric-label,
.service-tile.result-tile .service-tile-content .metric-number,
.service-tile.result-tile .results-metrics h3 {
    color: white;
}

/* Простые стили для метрик в Result карточке */
.service-tile.result-tile .metric-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.service-section .section-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2c4a6b;
    margin-bottom: 30px;
}

.section-content {
    color: #555;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.section-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.section-content li {
    margin-bottom: 12px;
    font-size: 1.1 rem;
    line-height: 1.6;
}

.section-content strong {
    color: #2c4a6b;
    font-weight: 500;
}

/* Убираем все цветные стили секций */

/* Metrics Grid */
.results-metrics h3,
.operational-improvements h3,
.additional-benefits h3 {
    font-size: 1.5rem;
    color: #2c4a6b;
    margin: 30px 0 25px 0;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.metric-item {
    background: linear-gradient(135deg, rgba(242, 242, 251, 1) 0%, #e9ecef 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00BFFF 0%, #1E90FF 100%);
}

.metric-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 191, 255, 0.2);
    border-color: rgba(0, 191, 255, 0.3);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c4a6b;
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    line-height: 1.3;
}

/* Customer Feedback */
.customer-feedback blockquote {
    background: linear-gradient(135deg, rgba(242, 242, 251, 1) 0%, #e3f2fd 100%);
    border-left: 5px solid #00BFFF;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c4a6b;
}

.customer-feedback cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

/* Убираем цветные стили технологий */

/* CTA Section */
.service-cta {
    background: linear-gradient(135deg, #2c4a6b 0%, #00BFFF 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    background: white;
    color: #2c4a6b;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(242, 242, 251, 1);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .service-detail-header,
    .service-layout {
        max-width: 95%;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .service-section {
        padding: 40px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-tiles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-tile {
        padding: 35px;
    }
    
    .service-tile-title {
        font-size: 1.8rem;
    }
    
    .service-title-card {
        padding: 40px;
    }
    
    .service-detail-header,
    .service-layout {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-detail-hero {
        padding: 100px 0 30px 0;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-title-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .service-tile {
        padding: 25px;
    }
    
    .service-tile-title {
        font-size: 1.5rem;
    }
    
    .service-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .service-section .section-title {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .tech-tags {
        gap: 8px;
    }
    
    .tech-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 60px 0;
    }
    
    .service-section {
        padding: 25px 15px;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-section .section-title {
        font-size: 1.5rem;
    }
    
    .section-content p,
    .section-content li {
        font-size: 0.95rem;
    }
    
    .customer-feedback blockquote {
        padding: 20px;
        font-size: 1rem;
    }
}

/* Дублирующие стили футера удалены - используются базовые стили выше */

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20%; /* Высота градиента */
    background: linear-gradient(to bottom, 
        rgba(242, 242, 251, 1) 0%, 
        rgba(242, 242, 251, 1) 50%,
        transparent 100%);
    z-index: 2;
}

.footer-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: linear-gradient(135deg, 
        rgba(60, 75, 111, 0.8) 0%,       /* Оригинальный цвет слева */
        rgba(60, 75, 111, 0.6) 20%,      /* Более прозрачный */
        rgba(40, 90, 140, 0.7) 50%,      /* Более темный синий */
        rgba(51, 114, 223, 0.9) 80%,       /* Глубокий синий */
        rgb(106, 168, 235) 100%);    /* Максимально яркий голубой справа */
    backdrop-filter: blur(20px) saturate(200%) brightness(120%);
    -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(120%);
    border-radius: 40px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 1600px;
    min-height: 200px;
    max-height: 400px;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-menu {
    display: flex;
    gap: 70px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.footer-menu a:hover {
    color: #00BFFF;
}

.footer-menu a:after {
    content: '';
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 1px !important;
    background: #00BFFF !important;
    transition: width 0.3s ease !important;
}

.footer-menu a:hover:after {
    width: 100% !important;
}

.footer-buttons {
    display: flex;
    gap: 10px;
}

.footer .btn {
    font-family: 'Unbounded', sans-serif !important;
    font-weight: 400 !important;
    padding: 12px 24px !important; /* Keep original footer button padding */
    border-radius: 25px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important; /* Keep original footer button font-size */
    text-decoration: none !important;
    display: inline-block !important;
}

/* Common styles for footer buttons to match header buttons (excluding size) */
.footer-button-common {
    backdrop-filter: blur(10px) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    
    background: rgb(255, 255, 255); /* Default background */
    color: rgb(0, 0, 0); /* Default text color */
}

/* Specific styles for the outline-like footer button */
.footer-button-outline-style {
    font-weight: 450 !important; /* Matches header-button's font-weight */
}

/* Specific styles for the primary-like footer button */
.footer-button-primary-style {
    font-weight: 500 !important; /* Matches header2-button's font-weight */
}

/* Hover styles for all footer buttons (common) */
.footer-button-common:hover {
    background: transparent; /* Remains transparent on hover */
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff; /* Text remains white on hover */
}

/* Контакты без плиток */
.footer-contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
    align-items: center;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-group:hover {
    background: transparent;
    transform: translateY(-2px);
}

.contact-label {
    font-size: 14px !important;
    opacity: 0.7 !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 5px !important;
}

.contact-value {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: white !important;
}

/* Удаляем отдельный класс для скролла, так как хедер всегда такой */
/* .header.scrolled {
    display: none !important;
} */

.header-left {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
}

.logo-img {
    height: 90px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: all 0.4s ease !important;
}

.logo-text {
    font-size: 32px !important;
    font-weight: 400 !important;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
    transition: all 0.4s ease !important;
}

.nav {
    display: flex !important;
    gap: 70px !important;
    align-items: center !important;
}

.nav-link {
    color: white !important;
    text-decoration: none !important;
    font-weight: 300 !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) !important;
    padding: 10px 0 !important;
}

.nav-link:hover {
    color: #00BFFF !important;
    transform: translateY(-2px) !important;
}

.header-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.header-button {
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 450 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    font-family: 'Unbounded', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 25px !important;
    border: 2px solid transparent !important;
}

.header2-button {
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
    font-family: 'Unbounded', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 25px !important;
    border: 2px solid transparent !important;
}

.header-button:hover {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
}

.header2-button:hover {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
}
