body {
    background-color: #f9f9fb;
    color: #333;
}
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.navbar-brand {
    color: #6a5acd; /* мягкий лавандовый */
    font-weight: bold;
}
.navbar-nav .nav-link {
    color: #555;
}
.navbar-nav .nav-link:hover {
    color: #40c4c0; /* бирюзовый акцент */
}
.btn-accent {
    background-color: #40c4c0;
    color: #fff;
}

/* Hero */
.hero {
    background: 
    linear-gradient(rgba(106, 90, 205, 0.7), rgba(64, 196, 192, 0.7)), 
    url('../img/main.png') 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.4rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Timeline */
.timeline::before {
    background: #40c4c0;
}
.timeline-item:nth-child(odd)::before,
.timeline-item:nth-child(even)::before {
    background: #6a5acd;
}
.timeline-content {
    background: #ffffff;
    color: #333;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Cookie Banner */
.cookie-banner {
    background-color: rgba(106, 90, 205, 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.15);
}
.cookie-banner .btn-primary {
    background-color: #40c4c0;
    color: #fff;
}
.cookie-banner .btn-primary:hover {
    background-color: #52d1d1;
}
.cookie-banner .btn-secondary {
    background-color: #9e9e9e;
    color: #fff;
}
.cookie-banner .btn-secondary:hover {
    background-color: #7d7d7d;
}

/* Cookie Modal */
.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: #ffffff;
    color: #333;
    padding: 25px;
    border-radius: 12px;
    max-width: 420px;
    margin: 100px auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.cookie-modal-content h3 {
    color: #6a5acd;
    margin-bottom: 15px;
}
.cookie-buttons .btn-success {
    background-color: #40c4c0;
    color: #fff;
}
.cookie-buttons .btn-success:hover {
    background-color: #52d1d1;
}

