/* Services Hero Section */
.services-hero {
    background: #EBEBEB;
    padding: 100px 0 80px;
}

.services-main-title {
    text-align: center;
    color: #007A6E;
    font-size: 2.5rem;
    margin-bottom: 50px;
    width: 100%;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Убираем старый заголовок из services-text */
.services-text h1 {
    display: none;
}

/* Остальные стили остаются без изменений */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    color: #000000;
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
    text-align: center;
}

.service-info h3 {
    color: #007A6E;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.service-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.services-footer {
    border-top: 2px solid #007A6E;
    padding-top: 20px;
}

.footer-text1 {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-text2 {
    color: #007A6E;
    font-size: 1rem;
}

/* Services Slider - стили без изменений */
.services-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slider-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #007A6E;
}

/* Адаптивность */
@media (max-width: 768px) {
    .services-main-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .slider-nav {
    display: none !important;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-main-title {
        font-size: 1.8rem;
    }
}

/* Services Slider */
.services-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slider-container {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #007A6E;
}

/* Improved Offers Section */
.offers {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.offers::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: #06A9CF;
    opacity: 0.15; /* Увеличили прозрачность */
    top: -300px;
    right: -200px;
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.offers::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #03B99F;
    opacity: 0.15; /* Увеличили прозрачность */
    bottom: -200px;
    left: -100px;
    z-index: 1;
    animation: float 12s infinite ease-in-out reverse;
}

/* Дополнительные круги */
.offers-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12; /* Увеличили прозрачность */
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.circle-1 {
    width: 320px; /* Немного увеличили размер */
    height: 320px;
    background: #06A9CF;
    top: 20%;
    left: 5%;
    animation-name: float-1;
}

.circle-2 {
    width: 220px; /* Немного увеличили размер */
    height: 220px;
    background: #03B99F;
    top: 60%;
    right: 10%;
    animation-name: float-2;
}

.circle-3 {
    width: 170px; /* Немного увеличили размер */
    height: 170px;
    background: #06A9CF;
    bottom: 30%;
    left: 15%;
    animation-name: float-3;
}

.circle-4 {
    width: 270px; /* Немного увеличили размер */
    height: 270px;
    background: #03B99F;
    top: 10%;
    right: 20%;
    animation-name: float-4;
}

.circle-5 {
    width: 200px; /* Немного увеличили размер */
    height: 200px;
    background: #06A9CF;
    bottom: 10%;
    right: 30%;
    animation-name: float-5;
}

.circle-6 {
    width: 140px; /* Немного увеличили размер */
    height: 140px;
    background: #03B99F;
    top: 40%;
    left: 25%;
    animation-name: float-6;
}

/* Добавим еще несколько кругов для большей насыщенности */
.circle-7 {
    width: 180px;
    height: 180px;
    background: #06A9CF;
    top: 70%;
    left: 40%;
    opacity: 0.1;
    animation-name: float-3;
    animation-duration: 18s;
}

.circle-8 {
    width: 100px;
    height: 100px;
    background: #03B99F;
    top: 15%;
    left: 60%;
    opacity: 0.1;
    animation-name: float-6;
    animation-duration: 22s;
}

/* Анимации для кругов остаются без изменений */
@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    25% {
        transform: translateY(-20px) translateX(15px) scale(1.02);
    }
    50% {
        transform: translateY(10px) translateX(-10px) scale(0.98);
    }
    75% {
        transform: translateY(-15px) translateX(-5px) scale(1.01);
    }
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-25px) translateX(20px) rotate(120deg);
    }
    66% {
        transform: translateY(15px) translateX(-15px) rotate(240deg);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    50% {
        transform: translateY(-30px) translateX(-20px) scale(1.1);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(20px) translateX(10px);
    }
    50% {
        transform: translateY(-15px) translateX(-15px);
    }
    75% {
        transform: translateY(10px) translateX(20px);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
    }
}

@keyframes float-5 {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(25px) scale(1.05);
    }
}

@keyframes float-6 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-15px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Остальные стили остаются без изменений */
.offers h2 {
    text-align: center;
    color: #007A6E;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.offer-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007A6E;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 3;
}

.offer-badge.free {
    background: #28a745;
}

.offer-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h3 {
    color: #007A6E;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #007A6E;
    padding-bottom: 10px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
}

.feature i {
    color: #007A6E;
    width: 20px;
    font-size: 1.1rem;
}

.offer-details,
.offer-includes,
.offer-requirements,
.offer-schedule {
    margin-bottom: 15px;
    padding: 0 5px;
}

.offer-details h4,
.offer-includes h4,
.offer-requirements h4,
.offer-schedule h4 {
    color: #007A6E;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.offer-details ul,
.offer-includes ul,
.offer-requirements ul,
.offer-schedule ul {
    color: #666;
    padding-left: 25px;
    margin-bottom: 10px;
}

.offer-details li,
.offer-includes li,
.offer-requirements li,
.offer-schedule li {
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 0.95rem;
}

.offer-note {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #007A6E;
    margin-top: auto;
}

.offer-note p {
    color: #2d5016;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offers {
        padding: 60px 0;
    }
    
    .offers h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .offer-content {
        padding: 20px;
    }
    
    .offer-features {
        padding: 12px;
    }
    
    .offer-image {
        height: 160px;
    }
    
    /* Адаптируем круги для мобильных */
    .offers::before {
        width: 400px;
        height: 400px;
        top: -200px;
        right: -150px;
        opacity: 0.12; /* Немного уменьшим прозрачность на мобильных */
    }
    
    .offers::after {
        width: 300px;
        height: 300px;
        bottom: -150px;
        left: -80px;
        opacity: 0.12; /* Немного уменьшим прозрачность на мобильных */
    }
    
    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5,
    .circle-6,
    .circle-7,
    .circle-8 {
        display: none; /* Скрываем маленькие круги на мобильных */
    }
}

@media (max-width: 480px) {
    .offers h2 {
        font-size: 1.8rem;
    }
    
    .offer-content {
        padding: 15px;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .offer-details ul,
    .offer-includes ul,
    .offer-requirements ul,
    .offer-schedule ul {
        padding-left: 20px;
    }
    
    /* Еще меньше круги для маленьких экранов */
    .offers::before {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
    }
    
    .offers::after {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -50px;
    }
}

/* Promotions Section */
.promotions {
    padding: 80px 0;
    background: #EBEBEB;
}

.promotions h2 {
    text-align: center;
    color: #007A6E;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.promotions-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.promotion-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.promotion-item:hover {
    transform: translateY(-5px);
}

.promotion-image {
    height: 200px;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promotion-content h3 {
    color: #007A6E;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.promotion-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-details {
    background: #007A6E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.btn-details:hover {
    background: #005a52;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0 60px;
        margin-top: 60px;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .promotion-item {
        grid-template-columns: 1fr;
    }
    
    .promotion-image {
        height: 200px;
    }
    
    .slider-container {
        height: 300px;
    }
    
    .services-text h1 {
        font-size: 2rem;
    }
    
    .offers h2,
    .promotions h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-text h1 {
        font-size: 1.8rem;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .offer-card {
        padding: 20px 15px;
    }
    
    .promotion-content {
        padding: 20px;
    }
    
    .slider-container {
        height: 250px;
    }
}
/* Promotions Section - Horizontal Slider */
.promotions {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promotions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/promotions/promotions-bg.jpg') center/cover no-repeat;
    z-index: 1;
}

.promotions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Добавил легкое затемнение для лучшей читаемости белого текста */
    z-index: 2;
}

.promotions .container {
    position: relative;
    z-index: 3;
}

.promotions h2 {
    text-align: center;
    color: white; /* Белый цвет для заголовка секции */
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Обновляем стили кнопок "Подробнее" */
.btn-details {
    background: #03B7A0;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 150px;
    box-shadow: 0 4px 15px rgba(3, 183, 160, 0.3);
}

.btn-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 183, 160, 0.4);
    background: #029882;
}

/* Возвращаем оранжевые бейджи скидок */
.promotion-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53); /* Оранжевый градиент */
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.promotions-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.promotions-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.promotion-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
}

.promotion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.promotion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.promotion-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.1);
}

.promotion-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Белый цвет для заголовков акций */
.promotion-content h3 {
    color: #007A6E; /* Оставляем зеленый для заголовков внутри карточек */
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.promotion-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.promotion-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #007A6E;
    font-size: 0.9rem;
}

.detail-item i {
    width: 20px;
    text-align: center;
}

/* Навигация слайдера */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 4;
}

.slider-nav:hover {
    background: #03B7A0;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav i {
    font-size: 1.2rem;
}

/* Индикаторы */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Адаптивность для слайдера акций */
@media (max-width: 1024px) {
    .promotion-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .promotions-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .promotions {
        padding: 60px 0;
    }
    
    .promotions h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .promotion-slide {
        flex: 0 0 calc(100% - 10px);
        min-width: calc(100% - 10px);
    }
    
    .promotions-slider-container {
        padding: 0 40px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .promotion-image {
        height: 180px;
    }
    
    .promotion-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .promotions h2 {
        font-size: 1.8rem;
    }
    
    .promotions-slider-container {
        padding: 0 30px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
    }
    
    .promotion-content {
        padding: 15px;
    }
    
    .promotion-content h3 {
        font-size: 1.3rem;
    }
    
    .btn-details {
        padding: 10px 20px;
        min-width: 140px;
        font-size: 0.9rem;
    }
}
/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #03B7A0 20%, 
        #03B7A0 80%, 
        transparent 100%);
    margin: 0;
    position: relative;
    z-index: 10;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #03B7A0;
    border-radius: 0 0 5px 5px;
}
/* Rules CTA Section */
.rules-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.rules-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.rules-content h2 {
    color: #007A6E;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rules-content > p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-rules-full {
    background: #03B7A0;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(3, 183, 160, 0.3);
    text-decoration: none;
}

.btn-rules-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 183, 160, 0.4);
    background: #029882;
    color: white;
    text-decoration: none;
}

/* Simple Section Divider */
.section-divider {
    height: 1px;
    background: #03B7A0;
    margin: 0;
    opacity: 0.3;
}

/* Адаптивность для блока правил */
@media (max-width: 768px) {
    .rules-cta {
        padding: 60px 0;
    }
    
    .rules-content h2 {
        font-size: 1.8rem;
    }
    
    .btn-rules-full {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rules-content h2 {
        font-size: 1.6rem;
    }
    
    .rules-content > p {
        font-size: 1rem;
    }
    
    .btn-rules-full {
        width: 100%;
        justify-content: center;
    }
}