.text-magenta { color: #C71585; } /* Малиновый цвет для яркости */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('../img/maun.webp') no-repeat center center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
}
.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}
.hero-section img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}
body {
    background: #FFE4E1; /* Светло-розовый фон */
}
.about-section {
    background: #FFF0F5; /* Лавандово-розовый */
    padding: 60px 0;
}
.about-section h2, .course-program h2 {
    color: #222;
    font-weight: bold;
}
.about-section ul, .course-program ul {
    list-style: none;
    padding: 0;
}
.about-section ul li, .course-program ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.about-section ul li i, .course-program ul li i {
    font-size: 1.5rem;
    color: #C71585; /* Малиновый */
    margin-right: 10px;
}
.course-program {
    background: #FFF5F7; /* Светлый фон */
    padding: 60px 0;
}
.module {
    background: #FFD1DC; /* Светло-малиновый */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(199, 21, 133, 0.2); /* Легкая тень малинового оттенка */
}
.reviews-section {
    background: #F5F5DC; /* Кремовый фон */
    padding: 60px 0;
}
.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(199, 21, 133, 0.3); /* Тень малинового оттенка */
    margin-bottom: 20px;
}
.review-card i {
    color: #C71585;
}
.footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
}
.footer a {
    color: #DB7093; /* Бледно-малиновый */
    text-decoration: none;
    margin: 0 10px;
}
.smm-info {
    background: #F8D7DA; /* Розовато-кремовый фон */
    padding: 60px 0;
}
.smm-info h2 {
    color: #222;
    font-weight: bold;
}
.smm-info .icon {
    font-size: 2rem;
    color: #C71585;
}
.breadcrumb-section {
    background: #F4A7B9; /* Светло-малиновый */
    padding: 15px 0;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}
.breadcrumb-item a {
    text-decoration: none;
    color: #C71585;
}
.breadcrumb-item.active {
    color: #6c757d;
}
.faq-section {
    background: #FFEEF0; /* Светло-розовый */
    padding: 60px 0;
}

.faq-section h2 {
    color: #333;
    font-weight: bold;
}

.accordion-button {
    background-color: #C71585;
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: #DB7093;
    color: white;
}
.course-program {
    background: #FFE6F2; /* Светлый фон */
    padding: 60px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #C71585; /* Малиновая линия таймлайна */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
    padding-right: 50px;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
    padding-left: 50px;
}

.module {
    background: #FFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 6px 10px rgba(199, 21, 133, 0.2); /* Малиновая тень */
    position: relative;
}

.module h4 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.module p {
    font-size: 1rem;
    color: #444;
}

.module i {
    font-size: 1.5rem;
    color: #C71585; /* Малиновые иконки */
    margin-right: 10px;
}

/* Кружки на таймлайне */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #C71585;
    border-radius: 50%;
    top: 20px;
    left: 50%;
    margin-left: -8px;
    box-shadow: 0px 0px 8px rgba(199, 21, 133, 0.5);
}
.reviews-section .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(199, 21, 133, 0.3); /* Малиновая тень */
    text-align: center;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 14px rgba(199, 21, 133, 0.4);
}

/* Расположение ёлочкой */
@media (min-width: 992px) {
    .reviews-section .row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-section .col-md-4:nth-child(2) {
        transform: translateY(30px);
    }

    .reviews-section .col-md-4:nth-child(4) {
        transform: translateY(30px);
    }
}

