* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0288D1;
    --light-blue: #4FC3F7;
    --dark-blue: #01579B;
    --accent-cyan: #00E5FF;
    --bg-dark: #0A1929;
    --bg-darker: #051220;
    --bg-card: #132F4C;
    --text-primary: #FFFFFF;
    --text-secondary: #B2BAC2;
    --border-color: rgba(79, 195, 247, 0.2);
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

.header {
    background: rgba(5, 18, 32, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-cyan);
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

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

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: transparent;
    color: var(--light-blue);
    border: 2px solid var(--light-blue);
}

.btn-login:hover {
    background: var(--light-blue);
    color: var(--bg-dark);
}

.btn-register {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--light-blue) 100%);
    color: var(--bg-dark);
}

.btn-register:hover {
    opacity: 0.9;
}

.banner {
    width: 100%;
    margin-bottom: 40px;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}


.content-section {
    padding: 40px 0;
}

.content-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 50px;
    border: 1px solid var(--border-color);
    max-width: 1200px;
    margin: 0 auto;
}

.content-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--accent-cyan);
    line-height: 1.4;
}

.content-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--light-blue);
}

.content-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.cta-box {
    text-align: center;
    margin: 15px 0;
}

.btn-cta {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: var(--text-primary);
    padding: 16px 50px;
    font-size: 18px;
    border-radius: 8px;
}

.btn-cta:hover {
    opacity: 0.9;
}

.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

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

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-responsible {
    background: rgba(19, 47, 76, 0.5);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.payment-method {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.table-wrapper {
    width: 100%;
    overflow-x: auto; /* Дозволяє горизонтальний скрол */
    -webkit-overflow-scrolling: touch;
    margin: 25px 0;
    border-radius: 12px;
}

/* Основні стилі таблиці */
.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px; /* Гарантує, що таблиця не стиснеться в кашу на маленьких екранах */
    background: var(--bg-card, #1a1d21); /* Використовує вашу змінну або темно-сірий */
    color: var(--text-primary, #ffffff);
    font-family: 'Exo 2', sans-serif;
    border: 1px solid var(--border-color, #333);
}

.info-table th, 
.info-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color, #333);
}

/* Заголовок таблиці */
.info-table thead {
    background: linear-gradient(135deg, var(--light-blue, #007bff) 0%, var(--primary-blue, #0056b3) 100%);
}

.info-table th {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Колір акценту для першої колонки */
.info-table td:first-child {
    color: var(--accent-cyan, #00d4ff);
    width: 40%;
}

/* Ефект при наведенні */
.info-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Останній рядок без нижньої межі */
.info-table tr:last-child td {
    border-bottom: none;
}

.content-image-container {
    margin: 30px 0;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-darker);
}

/* Сама картинка */
.content-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Опціонально: ефект при наведенні */
.content-image-container:hover .content-image {
    transform: scale(1.02);
}

/* Підпис під картинкою (якщо потрібен) */
.image-caption {
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    border-top: 1px solid var(--border-color);
    background: rgba(19, 47, 76, 0.3);
}
/* FAQ Стилі */
.faq-container {
    margin-top: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "?";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: var(--bg-darker);
    border-radius: 50%;
    margin-right: 15px;
    font-size: 16px;
    flex-shrink: 0;
}

.faq-item .content-text {
    margin-bottom: 0;
    padding-left: 43px; /* Відступ, щоб текст був під питанням */
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 17px;
    }
}
/* Адаптація для мобільних */
@media (max-width: 768px) {
    .content-image-container {
        margin: 20px 0;
        border-radius: 8px; /* Трохи менше заокруглення для мобілок */
    }
    .image-caption {
        font-size: 13px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: space-around;
        margin-top: 15px;
    }
    
    .content-box {
        padding: 30px 20px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
