:root {
    --primary: #FFF44F;
    --accent: #FFFF66;
    --highlight: #FFBA00;
    --dark-bg: #1A1A2E;
    --card-dark: #16213E;
    --text-light: #F5F5F5;
    --text-dark: #333333;
    --bg-light: #FFFFFF;
    --bg-gray: #F9F9F9;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-title.light {
    color: var(--text-light);
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary), var(--highlight));
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 186, 0, 0.4);
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 186, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark-bg);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}

header.sticky {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--text-light);
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: var(--highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.8)), url('../images/online-cardio-aerobics-1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 100px 20px 60px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    background: rgba(22, 33, 62, 0.8);
    padding: 20px 40px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 244, 79, 0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.animated {
    animation: fadeInUp 0.8s forwards;
}

/* Block 1: How to & Booking */
.how-to-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.step-map {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.step-map::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 4px;
    background: var(--highlight);
    transform: translateX(-50%);
    border-radius: 2px;
}

.step {
    position: relative;
    margin-bottom: 40px;
    padding-left: 120px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    position: absolute;
    left: 50px;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    color: var(--bg-light);
}

.step-content {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--bg-light);
    transform: rotate(45deg);
}

.step-content h3 {
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.mini-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.mini-card {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    text-align: center;
    border-top: 5px solid var(--primary);
    transition: var(--transition);
}

.mini-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mini-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.mini-card .price {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.mini-card p {
    font-size: 0.9rem;
    color: #AAA;
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-bg);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 244, 79, 0.2);
}

.form-control.error {
    border-color: #FF4444;
}

.error-message {
    color: #FF4444;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.explore-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-scroll-down {
    background: none;
    border: none;
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    transition: var(--transition);
}

.btn-scroll-down:hover {
    color: var(--highlight);
    transform: translateY(5px);
}

/* Block 2: Slider */
.slider-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    position: relative;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(22, 33, 62, 0.95));
}

.slide-content h3 {
    font-size: 2rem;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 244, 79, 0.8);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 244, 79, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Block 3: Accordion */
.accordion-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    background: var(--bg-light);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-gray);
}

.accordion-header h3 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--bg-gray);
}

.accordion-body {
    padding: 20px 30px;
    color: #555;
    line-height: 1.7;
}

/* Block 4: Circular About */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow: hidden;
}

.circular-layout {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 8px solid var(--primary);
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 0 40px rgba(255, 244, 79, 0.4);
}

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

.info-point {
    position: absolute;
    width: 280px;
    text-align: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.info-point.visible {
    opacity: 1;
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: inline-block;
}

.info-point h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-point p {
    font-size: 0.9rem;
    color: #CCC;
}

/* Circular positioning variables set via inline JS, but fallback to relative on mobile */

/* Block 5: Table & Prices */
.schedule-price-section {
    padding: 80px 0;
    background-color: var(--bg-gray);
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 15px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    min-width: 700px;
}

.schedule-table th {
    background: var(--dark-bg);
    color: var(--primary);
    padding: 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.schedule-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #EEE;
    color: #444;
}

.schedule-table tr:hover {
    background-color: #F8F9FA;
}

.schedule-table td:first-child {
    font-weight: 600;
    color: var(--dark-bg);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.price-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
    border: 1px solid #EEE;
}

.price-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card.highlighted {
    background: var(--card-dark);
    color: var(--text-light);
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 40px rgba(255, 186, 0, 0.2);
}

.price-card.highlighted:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--highlight), var(--primary));
    color: var(--dark-bg);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.price-card.highlighted h3 {
    color: var(--text-light);
}

.price-amount {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.price-card.highlighted .price-amount {
    color: var(--primary);
}

.price-details {
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95rem;
}

.price-card.highlighted .price-details {
    color: #CCC;
}

.price-desc {
    font-style: italic;
    margin-bottom: 30px;
    color: #888;
}

.price-card.highlighted .price-desc {
    color: #AAA;
}

/* Calculator */
.calculator-box {
    background: var(--dark-bg);
    color: var(--text-light);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.calc-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.calc-group {
    flex: 1;
}

.calc-group label {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary);
}

.range-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    background: #333;
    border-radius: 5px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 244, 79, 0.5);
}

.range-value {
    text-align: right;
    font-weight: 700;
    margin-top: 10px;
}

.calc-select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    background: #333;
    color: #FFF;
    border: 1px solid #444;
    font-family: var(--font-body);
    font-size: 1rem;
}

.calc-result {
    background: rgba(255, 244, 79, 0.1);
    border: 1px solid rgba(255, 244, 79, 0.3);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}

.calc-result h4 {
    margin-bottom: 10px;
}

.calc-total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* Block 6: Selling Text */
.selling-text-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--highlight));
    color: var(--dark-bg);
}

.selling-text-section .section-title {
    color: var(--dark-bg);
}

.selling-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.selling-content p {
    margin-bottom: 20px;
}

.pull-quote {
    background: rgba(255, 255, 255, 0.4);
    padding: 30px;
    border-left: 5px solid var(--dark-bg);
    border-radius: 0 10px 10px 0;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
}

.pull-quote span {
    display: block;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 700;
    font-style: normal;
}

/* Block 7 & 8: Infographic & Gallery */
.visual-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-circle {
    background: var(--bg-gray);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 5px solid var(--primary);
    transition: var(--transition);
}

.stat-circle:hover {
    transform: scale(1.05);
    background: var(--dark-bg);
    color: var(--text-light);
    border-color: var(--highlight);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.stat-circle:hover .stat-number {
    color: var(--primary);
}

.stat-text {
    font-size: 0.9rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.benefit-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 244, 79, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #FFF;
    font-size: 0.95rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-accept-all {
    background: var(--primary);
    color: var(--dark-bg);
}

.btn-accept-all:hover {
    background: var(--highlight);
}

.btn-settings {
    background: transparent;
    border: 1px solid #555;
    color: var(--text-light);
}

.btn-settings:hover {
    background: rgba(255,255,255,0.1);
}

/* Simple pages styling */
.page-header {
    background: var(--dark-bg);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--text-light);
}

.page-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    margin: 30px 0 15px;
    color: var(--dark-bg);
}

.page-content p {
    margin-bottom: 15px;
}

/* Success page */
.success-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-gray);
    padding: 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 30px;
    animation: bounce 1s ease infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .circular-layout {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .center-image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 40px;
    }
    
    .info-point {
        position: relative;
        width: 100%;
        max-width: 400px;
        background: var(--card-dark);
        padding: 20px;
        border-radius: 10px;
        opacity: 1 !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        border-radius: 20px;
    }
    
    .step-map::before {
        left: 30px;
    }
    
    .step {
        padding-left: 80px;
    }
    
    .step-icon {
        left: 30px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .calc-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .mini-card {
        width: 100%;
    }
}