:root {
            --primary-color: #4CAF50;
            --secondary-color: #2E7D32;
            --light-color: #E8F5E9;
            --dark-color: #1B5E20;
            --text-color: #333333;
            --light-text: #ffffff;
            --section-padding: 80px 20px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        
        /* Header/Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../img/Zelenodar_1200_600.jpg') center/cover no-repeat;
            color: var(--light-text);
            text-align: center;
            padding: 150px 20px;
            position: relative;
        }
        
        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Complex Section with Carousel */
        .complex {
            background-color: var(--light-color);
            padding: var(--section-padding);
            text-align: center;
        }
        
        .carousel-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 450px;
        }
        
        .carousel-slide {
            min-width: 100%;
            position: relative;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            width: 100%;
            padding: 15px;
            font-style: italic;
        }
        
        .carousel-controls {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .carousel-control {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            transition: background-color 0.3s;
        }
        
        .carousel-control:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .carousel-dot.active {
            background-color: var(--primary-color);
        }
        
        .complex-caption {
            font-style: italic;
            color: var(--dark-color);
            margin-top: 20px;
            font-size: 20px;
        }
        
        /* Description Section */
        .description {
            padding: var(--section-padding);
            background-color: white;
        }
        
        .description h2 {
            font-size: 36px;
            margin-bottom: 25px;
        }
        
        .description-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 20px;
        }
        
        .description ul {
            list-style-type: none;
            padding-left: 20px;
            margin-top: 20px;
        }
        
        .description li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
            font-size: 20px;
        }
        
        .description li:before {
            content: "✓";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* Community Section */
        .community {
            background-color: var(--light-color);
            padding: var(--section-padding);
            text-align: center;
        }
        
        .testimonials {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 400px;
            text-align: left;
        }
        
        .community h2 {
            font-size: 32px;
        }
        
        /* Rules Section */
        .rules {
            padding: var(--section-padding);
            background-color: white;
        }
        
        .rules h2 {
            font-size: 36px;
            margin-bottom: 25px;
        }
        
        .rules-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 20px;
        }
        
        .rules ol {
            margin-top: 20px;
            padding-left: 20px;
        }
        
        .rules li {
            margin-bottom: 18px;
            font-size: 20px;
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--secondary-color);
            color: var(--light-text);
            padding: 80px 20px;
            text-align: center;
        }
        
        .cta h2 {
            color: white;
            font-size: 32px;
            margin-bottom: 30px;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: var(--light-text);
            padding: 40px 20px;
            text-align: center;
        }
        
        .footer a {
            color: var(--light-color);
            text-decoration: none;
        }
        
        .footer a:hover {
            text-decoration: underline;
        }
        
        .footer p {
            margin: 10px 0;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .testimonials {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                padding: 12px 25px;
                font-size: 16px;
            }
        }
        
        /* Telegram Icon */
        .telegram-icon {
            margin-right: 10px;
            vertical-align: middle;
        }
        
        /* QR Code Section */
        .qr-section {
            padding: var(--section-padding);
            background-color: white;
            text-align: center;
        }
        
        .qr-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 600px;
            margin: 0 auto;
            padding: 30px;
            background-color: var(--light-color);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .qr-code {
            width: 200px;
            height: 200px;
            background-color: white;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .qr-text {
            font-size: 18px;
            margin-bottom: 15px;
        }