* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: white;
    overflow-x: hidden;
    background-color: rgb(4, 65, 132);
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

/* Fixed CTA Button */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #79ac2b, #84cc16);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(121, 172, 43, 0.4);
    transition: transform 0.3s ease;
    animation: pulse 2s infinite;
}

.fixed-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #84cc16, #79ac2b);
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(121, 172, 43, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(121, 172, 43, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(121, 172, 43, 0.4); }
}

@keyframes pulseBlue {
    0% { box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3); }
    50% { box-shadow: 0 12px 40px rgba(30, 58, 138, 0.6); }
    100% { box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(4, 65, 132);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('images/logo_new.png');
    background-size: 210px auto;
    background-repeat: repeat;
    opacity: 0.05;
    transform: rotate(-30deg);
    z-index: 1;
    pointer-events: none;
}

/* Logo in header */
.logo {
    max-width: 200px;
    height: auto;
}

/* Hero Header */
.hero-header {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    transition: all 0.3s ease;
}

/* When city banner is shown, hide call button completely */
body.city-banner-shown .call-button {
    display: none;
}


/* Hide call button when no city is selected */
body:not(.city-selected) .call-button {
    display: none;
}

/* Header Controls */
.header-controls {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

/* City Switcher */
.city-switcher {
    background: rgba(4, 65, 132, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 5px;
    display: flex;
    gap: 5px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide city switcher when banner is shown or city is selected */
body.city-banner-shown .city-switcher,
body.city-selected .city-switcher {
    opacity: 0;
    visibility: hidden;
}

/* City indicator for selected city */
.city-indicator {
    background: rgba(4, 65, 132, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 5px 12px;
    color: rgb(4, 65, 132);
    font-weight: 500;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
}

.city-indicator.show {
    display: flex;
}

.city-indicator:hover {
    background: rgba(4, 65, 132, 0.15);
    border-color: rgba(4, 65, 132, 0.2);
    transform: translateY(-1px);
}

.city-indicator-icon {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

/* City dropdown for changing city */
.city-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 8px;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.city-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 8px;
}

.city-dropdown-item:hover {
    background: rgba(4, 65, 132, 0.05);
}

.city-dropdown-item.current {
    background: rgba(4, 65, 132, 0.1);
    color: rgb(4, 65, 132);
    font-weight: 500;
}

.city-dropdown-text {
    display: flex;
    flex-direction: column;
}

.city-dropdown-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.city-dropdown-desc {
    font-size: 0.75rem;
    opacity: 0.7;
}

.city-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: rgb(4, 65, 132);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.city-button.active {
    background: rgba(4, 65, 132, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.city-button:hover {
    background: rgba(4, 65, 132, 0.05);
}

/* Call Button */
.call-button {
    background: linear-gradient(135deg, #79ac2b, #84cc16);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(121, 172, 43, 0.3);
    white-space: nowrap;
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 172, 43, 0.4);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #84cc16, #79ac2b);
}

/* Court image for sections */
.court-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 2rem auto;
    display: block;
}

.hero-content {
    z-index: 2;
    position: relative;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(4, 65, 132, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgb(4, 65, 132);
    transform: scale(1.2);
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Hero bullets */
.hero-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.3s both;
}

.bullet-item {
    font-size: 1rem;
    font-weight: 500;
    color: rgb(4, 65, 132);
}

.bullet-separator {
    color: rgb(4, 65, 132);
    margin: 0 0.5rem;
}

.bullets-carousel {
    display: contents;
}

/* CTA buttons container */
.cta-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 18px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 240px;
    white-space: nowrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #79ac2b, #84cc16);
    color: white;
    box-shadow: 0 8px 25px rgba(121, 172, 43, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(121, 172, 43, 0.4);
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #84cc16, #79ac2b);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.6);
}

/* Padel Ball Slider */
.padel-slider {
    position: relative;
    width: 350px;
    height: 70px;
    margin: 2rem auto;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 35px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.padel-slider:hover {
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.15), 0 4px 15px rgba(132, 204, 22, 0.2);
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    height: 2px;
    background: transparent;
    transform: translateY(-50%);
    border-radius: 1px;
}

.slider-progress {
    height: 100%;
    background: transparent;
    border-radius: 1px;
    width: 0%;
    transition: width 0.3s ease;
}

.padel-ball {
    position: absolute;
    top: 50%;
    left: 30px;
    width: 50px;
    height: 50px;
    background-image: url('icons/ball_transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    cursor: grab;
    transition: all 0.3s ease;
}

.padel-ball:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-complete {
    background: linear-gradient(135deg, #84cc16, #65a30d) !important;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.4);
}

.slider-complete .padel-ball {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.slider-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
    font-weight: 500;
}

.slider-complete .slider-text {
    color: #84cc16;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.slider-arrows {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.slider-complete .slider-arrows {
    opacity: 0;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 12px solid #84cc16;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    animation: slideArrow 1.5s ease-in-out infinite;
}

.arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideArrow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(4, 65, 132, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 2px solid rgb(4, 65, 132);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    color: #7dd3fc;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #e5e5e5;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, rgb(4, 65, 132), rgb(2, 44, 89));
    color: white;
}

.cookie-btn.accept:hover {
    background: linear-gradient(135deg, rgb(2, 44, 89), rgb(1, 30, 60));
    transform: translateY(-1px);
}

.cookie-btn.decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-btn.decline:hover {
    background: #333;
    border-color: #888;
    color: white;
}

.cookie-btn.settings {
    background: transparent;
    color: #7dd3fc;
    border: 1px solid #7dd3fc;
    font-size: 0.85rem;
}

.cookie-btn.settings:hover {
    background: rgba(125, 211, 252, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h3 {
        font-size: 0.85rem;
    }
    
    .cookie-text p {
        font-size: 0.7rem;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
        gap: 6px;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

/* Form Result Modal */
.result-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.result-modal.show {
    display: flex;
}

.result-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon.success {
    background: linear-gradient(135deg, #84cc16, #65a30d);
    color: white;
}

.result-icon.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.result-modal h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.result-modal p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Mini Slider */
.mini-slider {
    max-width: 800px;
    margin: 4rem auto;
    position: relative;
}

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

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

.slide.active {
    opacity: 1;
}

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

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(4, 65, 132, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgb(4, 65, 132);
    transform: scale(1.2);
}

/* Padel bullets */
.padel-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
}

.padel-bullets .bullet-item {
    font-size: 1.1rem;
    font-weight: 500;
    color: inherit;
}

.padel-bullets .bullet-separator {
    color: inherit;
    margin: 0 0.5rem;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin: 2rem 0;
}

/* UGC Review */
.ugc-review {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border-left: 4px solid #79ac2b;
    position: relative;
    z-index: 3;
}

.review-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #1e3a8a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 500;
    color: #1e3a8a;
    opacity: 0.8;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Registration Form */
.hero-form-section {
    width: 100%;
    max-width: 500px;
    margin: 2rem 0;
    z-index: 3;
    position: relative;
}

.hero-registration-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.hero-form-inputs {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.hero-form-inputs input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.hero-form-inputs input:focus {
    outline: none;
    border-color: #79ac2b;
    box-shadow: 0 0 0 3px rgba(121, 172, 43, 0.1);
}

.hero-form-inputs input::placeholder {
    color: #9ca3af;
}

.hero-form-button {
    padding: 12px 32px;
    background: linear-gradient(135deg, #79ac2b, #84cc16);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 172, 43, 0.3);
    min-width: 200px;
}

.hero-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 172, 43, 0.4);
    background: linear-gradient(135deg, #84cc16, #79ac2b);
}

.hero-form-button:active {
    transform: translateY(0);
}

.hero-booking-link {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #79ac2b, #84cc16);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(121, 172, 43, 0.3);
    text-decoration: none;
    text-align: center;
    width: 100%;
}

.hero-booking-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 172, 43, 0.4);
    background: linear-gradient(135deg, #84cc16, #79ac2b);
}

.hero-booking-link:active {
    transform: translateY(0);
}

/* Photo Carousel in Hero Section */
.hero .photo-carousel-section {
    width: 100%;
    margin: 1.5rem 0;
    position: relative;
    z-index: 3;
}
.hero .carousel-ribbon-container {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 400px;
    max-height: 50vh;
    display: flex;
    align-items: center;
}
.hero .carousel-ribbon-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.hero .carousel-ribbon-track {
    display: flex;
    height: 100%;
    gap: 0;
    padding: 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hero .carousel-ribbon-item {
    flex: 0 0 auto;
    height: 100%;
    position: relative;
    min-width: 300px;
}
.hero .carousel-ribbon-item img {
    height: 100%;
    width: auto;
    min-width: 300px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform 0.3s ease;
}
.hero .carousel-ribbon-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}
/* Кнопки навигации карусели */
.hero .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.hero .carousel-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero .carousel-btn-prev {
    left: 20px;
}
.hero .carousel-btn-next {
    right: 20px;
}
.hero .carousel-btn svg {
    color: #333;
}

/* Section Styles */
.section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('images/logo_new.png');
    background-size: 210px auto;
    background-repeat: repeat;
    opacity: 0.05;
    transform: rotate(-30deg);
    z-index: 1;
    pointer-events: none;
}

.section:nth-child(even) {
    background: #f8f9fa;
    color: #333;
}

.section:nth-child(odd) {
    color: white;
}

.section:nth-child(odd)::before {
    display: none;
}

.section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 2.5rem;
    text-align: center;
    color: inherit;
}

.section:nth-child(even) h2 {
    color: #044184;
}

.section p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: inherit;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Steps Section */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #79ac2b, #84cc16);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #044184;
}


/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    max-width: 1000px;
    margin: 3rem auto;
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    color: #044184;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #79ac2b;
}

.benefit-icon {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border: 3px solid #044184;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.benefit-text {
    flex: 1;
    min-width: 0;
}

@media (max-width: 600px) {
    .benefit-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        align-items: center;
    }
    
    .benefit-icon {
        width: 120px;
        height: 120px;
    }
    
    .benefit-text {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .benefit-card {
        padding: 1rem 0.8rem;
    }
    
    .benefit-content {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .benefit-icon {
        width: 100px;
        height: 100px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #044184;
    text-align: center;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    text-align: left;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
    text-align: left;
}

.benefits .benefit-icon {
    width: 133px;
    height: 133px;
    border: 3px solid #044184;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.benefit p {
    text-align: left;
}

/* City Selection Banner */
.city-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(4, 65, 132, 0.95), rgba(4, 65, 132, 0.85));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.city-modal.show {
    display: block;
    transform: translateY(0);
}

/* Adjust body padding when banner is shown */
body.city-banner-shown {
    padding-top: 60px;
    transition: padding-top 0.4s ease;
}

@media (max-width: 768px) {
    body.city-banner-shown {
        padding-top: 90px;
    }
}

.city-modal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.city-modal-text {
    flex: 1;
    min-width: 250px;
}

.city-modal h2 {
    color: white;
    margin: 0 0 0.3rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.city-modal p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.8rem;
}

.city-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.city-buttons {
    display: flex;
    gap: 0.5rem;
}

.city-select-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 90px;
    backdrop-filter: blur(5px);
}

.city-select-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.city-btn-tver:hover {
    background: rgba(121, 172, 43, 0.3);
    border-color: #79ac2b;
}

.city-btn-moscow:hover {
    background: rgba(4, 65, 132, 0.3);
    border-color: #044184;
}

.banner-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.city-name {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.city-desc {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Mobile responsiveness for city banner */
@media (max-width: 768px) {
    .city-modal-content {
        padding: 0.6rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }
    
    .city-modal-text {
        min-width: auto;
    }
    
    .city-modal h2 {
        font-size: 0.95rem;
    }
    
    .city-modal p {
        font-size: 0.75rem;
    }
    
    .city-buttons {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .city-select-btn {
        min-width: 80px;
        padding: 0.4rem 0.8rem;
    }
    
    .city-name {
        font-size: 0.75rem;
    }
    
    .city-desc {
        font-size: 0.65rem;
    }
    
    .city-indicator {
        font-size: 0.7rem;
        padding: 4px 10px;
        gap: 4px;
    }
    
    .city-indicator-icon {
        width: 10px;
        height: 10px;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
}

.city-modal-content {
    position: relative;
}

@media (max-width: 768px) {
    .city-buttons {
        flex-direction: column;
    }
    
    .city-select-btn {
        min-width: auto;
    }
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.vk-link {
    background: #4680C2;
    color: white;
}


.whatsapp-link {
    background: #25D366;
    color: white;
}

.telegram-link {
    background: #229ED9;
    color: white;
}

/* FAQ */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    color: #333;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #79ac2b;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #044184, #032d5f);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.final-cta h2 {
    color: white;
    margin-bottom: 2.5rem;
}

.final-cta p {
    color: #d1d5db;
    margin-bottom: 3rem;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid #79ac2b;
}


/* Fixed widgets positioning */
.fixed-widgets {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    pointer-events: none;
}

.fixed-widgets > * {
    pointer-events: auto;
}

.fixed-cta {
    position: static;
    background: rgba(255, 255, 255, 0.15);
    color: #1e3a8a;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.fixed-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #1e40af;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.telegram-widget {
    position: static;
    background: rgba(255, 255, 255, 0.15);
    color: #1e3a8a;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulseBlue 2s infinite;
}

.telegram-widget:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #1e40af;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-header {
        top: 20px;
        left: 20px;
        right: 20px;
        align-items: flex-start;
    }
    
    .logo {
        max-width: 160px;
    }
    
    .header-right {
        gap: 6px;
        flex-direction: column;
        align-items: flex-end;
    }

    /* Mobile adjustments for selected city state */
    body.city-selected .header-right {
        top: 0px;
        right: 5px;
    }
    
    .header-controls {
        gap: 5px;
    }
    
    .call-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding: 140px 1.5rem 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-carousel {
        height: 250px;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-bullets {
        display: block;
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    
    .bullets-carousel {
        display: flex;
        animation: slideCarousel 6s infinite;
        gap: 1rem;
    }
    
    .bullet-item {
        flex-shrink: 0;
        min-width: 200px;
        text-align: center;
        margin: 0 0.5rem;
    }
    
    .bullet-separator {
        display: none;
    }
    
    @keyframes slideCarousel {
        0%, 20% { transform: translateX(0); }
        33.33%, 53.33% { transform: translateX(-250px); }
        66.66%, 86.66% { transform: translateX(-500px); }
        100% { transform: translateX(0); }
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        min-width: 260px;
        font-size: 1rem;
        padding: 15px 30px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .fixed-widgets {
        bottom: 15px;
        padding: 0 15px;
    }
    
    .fixed-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .telegram-widget {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .mini-slider {
        margin: 2rem auto;
    }
    
    .slider-container {
        height: 250px;
    }
    
    .padel-bullets {
        flex-direction: column;
        gap: 0.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .benefit-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }
    
    .benefit-icon {
        width: 100px;
        height: 100px;
        align-self: center;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .padel-bullets .bullet-separator {
        display: none;
    }
    
    .ugc-review {
        padding: 1.5rem;
        margin: 2rem auto 0;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .contact-form {
        max-width: none;
        margin: 1.5rem 0 0;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

/* Free Training Block Mobile Styles */
@media (max-width: 768px) {
    .container div[style*="display: flex"][style*="gap: 60px"] {
        flex-direction: column !important;
        gap: 40px !important;
        text-align: center;
    }
    
    .container div[style*="min-width: 350px"] h2 {
        font-size: 1.9rem !important;
    }
    
    .container div[style*="min-width: 350px"] span[style*="font-size: 3.2rem"] {
        font-size: 2.6rem !important;
    }
    
    .container div[style*="min-width: 350px"] span[style*="font-size: 2.2rem"] {
        font-size: 1.8rem !important;
    }
    
    .container div[style*="min-width: 350px"] a[style*="padding: 16px 32px"] {
        padding: 14px 28px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .container div[style*="min-width: 350px"] h2 {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }
    
    .container div[style*="min-width: 350px"] span[style*="font-size: 2.6rem"] {
        font-size: 2.2rem !important;
    }
    
    .container div[style*="min-width: 350px"] span[style*="font-size: 1.8rem"] {
        font-size: 1.5rem !important;
    }
    
    .container div[style*="min-width: 350px"] a[style*="font-size: 1rem"] {
        padding: 12px 24px !important;
        font-size: 0.95rem !important;
    }
}

/* Handwritten animation */
@keyframes handwrite {
    0% { 
        opacity: 0; 
        transform: scale(0.8) rotate(-12deg);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.05) rotate(-5deg);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) rotate(-8deg);
    }
}

.handwritten-price {
    animation: handwrite 1.5s ease-out 0.5s both;
}

/* Red pen strike-through animation */
@keyframes strikethrough {
    0% { 
        stroke-dasharray: 0 200;
    }
    100% { 
        stroke-dasharray: 200 0;
    }
}

.strike-line {
    stroke-dasharray: 200;
    animation: strikethrough 1s ease-out both;
}

/* Footer Styles */
.site-footer {
    --bg: #0B0F1A;
    --fg: #E8ECF1;
    --muted: #A7B1C2;
    --accent: #79ac2b;
    --line: rgba(255,255,255,.08);
    background: var(--bg);
    color: var(--fg);
    font: 400 15px/1.6 'Roboto', system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    margin-top: 80px;
}

.footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.footer__brand { 
    margin-bottom: 24px;
    text-align: center;
}

.footer__logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer__tagline { 
    margin: 6px 0 0; 
    color: var(--muted); 
    font-size: 14px; 
}

.footer__cols {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 24px 0 16px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.footer__col:nth-child(1) { grid-column: span 5; }
.footer__col:nth-child(2) { grid-column: span 4; }
.footer__col:nth-child(3) { grid-column: span 3; }

.footer__title {
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.footer__list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer__list li { 
    margin: 6px 0;
    font-size: 14px;
}

.footer__link {
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px dashed var(--line);
    transition: all 0.3s ease;
}

.footer__link:hover { 
    color: var(--accent); 
    border-bottom-color: var(--accent); 
}

.footer-address {
    color: var(--fg);
    font-size: 14px;
}

.footer__bottom {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    gap: 16px; 
    padding-top: 16px; 
    font-size: 14px; 
    color: var(--muted);
}

.footer__bottom p { 
    margin: 0; 
}

.footer__meta { 
    list-style: none; 
    display: flex; 
    gap: 16px; 
    margin: 0; 
    padding: 0; 
}

.footer__meta .footer__link { 
    color: var(--muted); 
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer__col:nth-child(1) { grid-column: span 12; }
    .footer__col:nth-child(2) { grid-column: span 6; }
    .footer__col:nth-child(3) { grid-column: span 6; }
}

@media (max-width: 560px) {
    .footer__cols { 
        grid-template-columns: 1fr; 
    }
    .footer__col { 
        grid-column: auto !important; 
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer__meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Hero Form Mobile Styles */
@media (max-width: 768px) {
    .hero-form-inputs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-form-inputs input {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px; /* предотвращает zoom на iOS */
    }
    
    .hero-form-button {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .hero-form-section {
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }
    
    .hero-registration-form {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding-top: 80px;
    }
}

/* Carousel Mobile Styles */
@media (max-width: 768px) {
    .hero .photo-carousel-section {
        margin: 1.5rem 0;
    }
    
    .hero .carousel-ribbon-container {
        height: 300px;
        max-height: 40vh;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        position: relative;
        overflow: hidden;
    }
    
    .hero .carousel-ribbon-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .hero .carousel-ribbon-track {
        display: flex;
        height: 100%;
        will-change: transform;
    }
    
    .hero .carousel-ribbon-item {
        min-width: 250px;
        flex-shrink: 0;
        height: 100%;
    }
    
    .hero .carousel-ribbon-item img {
        min-width: 250px;
        width: auto;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 0;
    }
    
    .hero .carousel-btn {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .hero .carousel-btn-prev {
        left: 10px;
    }
    
    .hero .carousel-btn-next {
        right: 10px;
    }
    
    .hero .carousel-btn:hover {
        transform: translateY(-50%) scale(1.05);
    }
}

@media (max-width: 480px) {
    .hero .photo-carousel-section {
        margin: 1rem 0;
    }
    
    .hero .carousel-ribbon-container {
        height: 250px;
        max-height: 35vh;
    }
    
    .hero .carousel-ribbon-item {
        min-width: 200px;
    }
    
    .hero .carousel-ribbon-item img {
        min-width: 200px;
    }
    
    .hero .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero .carousel-btn-prev {
        left: 5px;
    }
    
    .hero .carousel-btn-next {
        right: 5px;
    }
}

@media (max-width: 360px) {
    .hero .carousel-ribbon-container {
        height: 200px;
        max-height: 30vh;
    }
    
    .hero .carousel-ribbon-item {
        min-width: 180px;
    }
    
    .hero .carousel-ribbon-item img {
        min-width: 180px;
    }
    
    .hero .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .hero .carousel-btn svg {
        width: 16px;
        height: 16px;
    }
}

