:root {
    --primary-color: #222;
    --secondary-color: #D35400;
    --accent-color: #047a33;
    --text-dark: #2C3E50;
    --text-light: #ECF0F1;
    --background-light: #F8F9FA;
    --background-dark: #2C3E50;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0, 0.9), rgba(0,0,0, 0.4)), url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    position: relative;
}

.feature-box {
    padding: 2.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.mentor-card {
    background: var(--background-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mentor-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.custom-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.custom-btn-primary {
    background: var(--primary-color);
    color: white;
}

.custom-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    padding: 3rem;
}

.navbar-custom {
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: var(--background-dark);
    padding: 1rem 0;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Секция Методология */
.methodology-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #010102 100%);
    padding: 6rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.methodology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.methodology-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.methodology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Секция Преимущества */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.benefit-box {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}

.benefit-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.benefit-box:hover::before {
    width: 100%;
    opacity: 0.1;
}

.benefit-box:hover {
    transform: translateX(10px);
}

.benefit-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-box:hover .benefit-number {
    transform: scale(1.2);
    color: rgba(0, 0, 0, 0.08);
}

.progress-bar-container {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin: 1rem 0;
}

.progress-bar {
    height: 100%;
    border-radius: 3px;
    background: var(--secondary-color);
    width: 0;
    transition: width 1.5s ease;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #047a33, #000);
    color: #fff;
    padding: 15px 10px;
    z-index: 1000;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    font-family: 'Arial', sans-serif;
}

.cookie-banner.show {
    visibility: visible;
    opacity: 1;
}

.cookie-banner .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner p {
    font-size: 14px;
    margin: 0;
}

.cookie-banner .btn {
    background: #ffc107;
    color: #000;
    border: none;
    font-weight: bold;
    padding: 5px 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cookie-banner .btn:hover {
    background: #ffa000;
    color: #fff;
}
.py-6{
    padding: 60px 0;
}
.py-4{
    padding: 60px 0!important;
}
@media (max-width: 768px) {
    .cookie-banner .row {
        text-align: center;
    }
    .cookie-banner .btn {
        margin-top: 10px;
    }
}
