body {
    background-color: #1a1a1a;
    color: #fff;
}
.navbar {
    background-color: #222;
}
.navbar-brand {
    color: #c28fff;
    font-weight: bold;
}
.navbar-nav .nav-link {
    color: #ccc;
}
.navbar-nav .nav-link:hover {
    color: #c28fff;
}
.btn-accent {
    background-color: #c28fff;
    color: #fff;
}
.hero {
    background: 
    linear-gradient(rgba(50, 0, 75, 0.8), rgba(50, 0, 75, 0.8)), 
    url('../img/hero.webp') center center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero h1 {
    font-size: 3rem;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #c28fff;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-item:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #c28fff;
    border-radius: 50%;
}
.timeline-item:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #c28fff;
    border-radius: 50%;
}
.timeline-content {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.timeline-content {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 31, 31, 0.95);
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 70%;
}

.cookie-banner .btn {
    margin-left: 10px;
    border: none;
    transition: background 0.3s;
}

.cookie-banner .btn-primary {
    background-color: #c28fff;
    color: #fff;
}

.cookie-banner .btn-primary:hover {
    background-color: #b07de6;
}

.cookie-banner .btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.cookie-banner .btn-secondary:hover {
    background-color: #5a636b;
}

/* Стили для модального окна */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.cookie-modal-content {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: 100px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cookie-modal-content h3 {
    margin-bottom: 15px;
}

.cookie-modal-content p {
    font-size: 0.9rem;
}

.cookie-modal-content label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.cookie-buttons {
    text-align: right;
}

.cookie-buttons .btn-success {
    background-color: #28a745;
    color: #fff;
    border: none;
    transition: background 0.3s;
}

.cookie-buttons .btn-success:hover {
    background-color: #218838;
}