        :root {
            --primary: #1e2025;
            --secondary: #e63946;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Bebas Neue', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary);
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn-secondary {
            display: inline-block;
            padding: 10px 20px;
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-2px);
        }
        
        .btn:hover {
            background-color: #c62b38;
            transform: translateY(-2px);
        }
        
        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Header */
        header {
            background-color: var(--primary);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: background-color 0.3s ease;
        }
        
        header.sticky {
            background-color: rgba(30, 32, 37, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        .logo-image{
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-right: 10px;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        /* Hero section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        /* About section */
        .about {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .about-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
        }
        
        .about-icon {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .about-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .about-card p {
            color: var(--gray);
        }
        
        .about-video {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .video-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .video-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background-color: #c62b38;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .video-text p {
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        /* Services section */
        .services {
            padding: 100px 0;
            background-color: var(--primary);
            color: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 40px;
            color: var(--secondary);
        }
        
        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 30px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
            z-index: -1;
            opacity: 0.1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card h3 {
            font-size: 24px;
            margin: 20px 0;
            color: var(--secondary);
        }
        
        .service-icon {
            font-size: 40px;
            color: var(--secondary);
        }
        
        /* Training Section */
        .training {
            padding: 100px 0;
            background-color: white;
        }
        
        .training .section-header h2 {
            color: var(--primary);
        }
        
        .training-content {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        
        .training-content::-webkit-scrollbar {
            display: none;
        }
        
        .training-item {
            flex: 0 0 350px;
            scroll-snap-align: start;
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .training-item:hover {
            transform: translateY(-10px);
        }
        
        .training-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .training-info {
            padding: 20px;
        }
        
        .training-info h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .training-info p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        /* Schedule Section */
        .schedule {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .schedule .section-header h2 {
            color: var(--primary);
        }
        
        .schedule-table-container {
            overflow-x: auto;
            margin-top: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .schedule-table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
            background-color: white;
        }
        
        .schedule-table th,
        .schedule-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #f0f0f0;
        }
        
        .schedule-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        .schedule-table tr:nth-child(even) td {
            background-color: rgba(0,0,0,0.02);
        }
        
        .schedule-table td:first-child {
            font-weight: 600;
            background-color: var(--primary);
            color: white;
        }
        
        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: white;
        }
        
        .team .section-header h2 {
            color: var(--primary);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.1);
        }
        
        .team-info {
            padding: 20px;
        }
        
        .team-info h3 {
            font-size: 24px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .team-role {
            font-size: 16px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .team-bio {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .team-social {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(0,0,0,0.05);
            border-radius: 50%;
            color: var(--primary);
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Facilities Section */
        .facilities {
            padding: 100px 0;
            background-color: var(--primary);
            color: white;
        }
        
        .facilities-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1/1;
            cursor: pointer;
        }
        
        .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;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            font-weight: 600;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .testimonials .section-header h2 {
            color: var(--primary);
        }
        
        .testimonials-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding: 20px 0;
            scrollbar-width: none;
        }
        
        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }
        
        .testimonial-card {
            flex: 0 0 350px;
            scroll-snap-align: start;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Blog Section */
        .blog {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .blog .section-header h2 {
            color: var(--primary);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-date {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .blog-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .blog-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .blog-more {
            text-align: center;
            margin-top: 40px;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: white;
        }
        
        .faq .section-header h2 {
            color: var(--primary);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 40px;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 15px 0;
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .faq-question:hover h3 {
            color: var(--secondary);
        }
        
        .faq-toggle {
            font-size: 24px;
            color: var(--secondary);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 0 15px;
            color: var(--gray);
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* App Section */
        .app-section {
            padding: 100px 0;
            background: linear-gradient(to right, var(--primary) 50%, var(--light) 50%);
        }
        
        .app-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .app-text {
            color: white;
            padding-right: 50px;
        }
        
        .app-text h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .app-text p {
            margin-bottom: 30px;
            color: rgba(255,255,255,0.8);
        }
        
        .app-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .app-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            font-size: 24px;
            margin-right: 15px;
            color: var(--secondary);
        }
        
        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .feature-text p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 0;
            font-size: 14px;
        }
        
        .app-buttons {
            display: flex;
            gap: 15px;
        }
        
        .app-button {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .app-button:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .app-icon {
            font-size: 30px;
            margin-right: 10px;
        }
        
        .app-button-text span {
            display: block;
            font-size: 12px;
            opacity: 0.8;
        }
        
        .app-image {
            background-color: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .app-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* CTA section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1599058917765-a780eda07a3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--light);
        }
        
        /* Limited Offer Banner */
        .limited-offer {
            background-color: var(--secondary);
            color: white;
            padding: 15px 0;
            text-align: center;
        }
        
        .offer-content {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .offer-text {
            font-weight: 600;
            font-size: 16px;
        }
        
        .countdown {
            background-color: rgba(0,0,0,0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 800;
            margin: 0 10px;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Pricing */
        .pricing {
            padding: 100px 0;
            background-color: white;
        }
        
        .pricing .section-header h2 {
            color: var(--primary);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: "Populärast";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--secondary);
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .price {
            font-size: 40px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 16px;
            color: var(--gray);
        }
        
        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .features-list li {
            margin-        /* Blog Section */
        .blog {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .blog .section-header h2 {
            color: var(--primary);
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .blog-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.1);
        }
        
        .blog-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--secondary);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-date {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .blog-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .blog-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .blog-more {
            text-align: center;
            margin-top: 40px;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: white;
        }
        
        .faq .section-header h2 {
            color: var(--primary);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 40px;
        }
        
        .faq-item {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 15px 0;
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: var(--primary);
            transition: color 0.3s ease;
        }
        
        .faq-question:hover h3 {
            color: var(--secondary);
        }
        
        .faq-toggle {
            font-size: 24px;
            color: var(--secondary);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 0 15px;
            color: var(--gray);
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        /* App Section */
        .app-section {
            padding: 100px 0;
            background: linear-gradient(to right, var(--primary) 50%, var(--light) 50%);
        }
        
        .app-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .app-text {
            color: white;
            padding-right: 50px;
        }
        
        .app-text h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .app-text p {
            margin-bottom: 30px;
            color: rgba(255,255,255,0.8);
        }
        
        .app-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .app-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .feature-icon {
            font-size: 24px;
            margin-right: 15px;
            color: var(--secondary);
        }
        
        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .feature-text p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 0;
            font-size: 14px;
        }
        
        .app-buttons {
            display: flex;
            gap: 15px;
        }
        
        .app-button {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 10px 20px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .app-button:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .app-icon {
            font-size: 30px;
            margin-right: 10px;
        }
        
        .app-button-text span {
            display: block;
            font-size: 12px;
            opacity: 0.8;
        }
        
        .app-image {
            background-color: var(--light);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .app-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
    }

        :root {
            --primary: #1e2025;
            --secondary: #e63946;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Bebas Neue', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn:hover {
            background-color: #c62b38;
            transform: translateY(-2px);
        }
        
        /* Header */
        header {
            background-color: var(--primary);
            color: white;
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        /* Hero section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 60px;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: var(--light);
        }
        
        /* About section */
        .about {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .about-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
        }
        
        .about-icon {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .about-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .about-card p {
            color: var(--gray);
        }
        
        .about-video {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .video-container {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .video-container img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .play-button:hover {
            background-color: #c62b38;
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .video-text h3 {
            font-size: 30px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .video-text p {
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        /* Training Section */
        .training {
            padding: 100px 0;
            background-color: white;
        }
        
        .training .section-header h2 {
            color: var(--primary);
        }
        
        .training-content {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 0;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
        }
        
        .training-content::-webkit-scrollbar {
            display: none;
        }
        
        .training-item {
            flex: 0 0 350px;
            scroll-snap-align: start;
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .training-item:hover {
            transform: translateY(-10px);
        }
        
        .training-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .training-info {
            padding: 20px;
        }
        
        .training-info h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .training-info p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        /* Schedule Section */
        .schedule {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .schedule .section-header h2 {
            color: var(--primary);
        }
        
        .schedule-table-container {
            overflow-x: auto;
            margin-top: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .schedule-table {
            width: 100%;
            min-width: 800px;
            border-collapse: collapse;
            background-color: white;
        }
        
        .schedule-table th,
        .schedule-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #f0f0f0;
        }
        
        .schedule-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        .schedule-table tr:nth-child(even) td {
            background-color: rgba(0,0,0,0.02);
            color: #000;
        }
        
        .schedule-table td:first-child {
            font-weight: 600;
            background-color: var(--primary);
            color: white;
        }
        
        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: white;
        }
        
        .team .section-header h2 {
            color: var(--primary);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-card {
            background-color: var(--light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.1);
        }
        
        .team-info {
            padding: 20px;
        }
        
        .team-info h3 {
            font-size: 24px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .team-role {
            font-size: 16px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .team-bio {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .team-social {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(0,0,0,0.05);
            border-radius: 50%;
            color: var(--primary);
            text-align: center;
            line-height: 40px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Facilities Section */
        .facilities {
            padding: 100px 0;
            background-color: var(--primary);
            color: white;
        }
        
        .facilities-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 1/1;
            cursor: pointer;
        }
        
        .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;
            right: 0;
            padding: 15px;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            font-weight: 600;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .testimonials .section-header h2 {
            color: var(--primary);
        }
        
        .testimonials-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 30px;
            padding: 20px 0;
            scrollbar-width: none;
        }
        
        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }
        
        .testimonial-card {
            flex: 0 0 350px;
            scroll-snap-align: start;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* CTA section */
        .cta {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1599058917765-a780eda07a3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--light);
        }
        
        /* Pricing */
        .pricing {
            padding: 100px 0;
            background-color: white;
        }
        
        .pricing .section-header h2 {
            color: var(--primary);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .pricing-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: "Populärast";
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--secondary);
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .price {
            font-size: 40px;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 16px;
            color: var(--gray);
        }
        
        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .features-list li {
            margin-bottom: 10px;
            color: var(--gray);
        }
        
        /* Contact */
        .contact {
            padding: 100px 0;
            background-color: var(--primary);
            color: white;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h2 {
            font-size: 40px;
            margin-bottom: 20px;
        }
        
        .contact-info p {
            margin-bottom: 30px;
            color: var(--gray);
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-details i {
            font-size: 20px;
            color: var(--secondary);
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 10px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            color: white;
            font-family: 'Montserrat', sans-serif;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: 1px solid var(--secondary);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-col h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-col p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .copyright {
            text-align: center;
            color: var(--gray);
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 40px;
            }
            
            .about-content,
            .contact-content,
            .training-grid {
                grid-template-columns: 1fr;
            }
            
            .menu-toggle {
                display: flex;
                z-index: 1001;
            }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 320px;
                background-color: var(--primary);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 50px 0;
                transition: right 0.3s ease;
                z-index: 1000;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .training-content {
                flex-direction: column;
            }
            
            .training-item {
                max-width: 100%;
            }
            
            .schedule-table {
                overflow-x: auto;
            }
            
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        .text-wrapper h2, .text-wrapper h3{
            margin-top: 20px;
            margin-bottom: 10px;
        }
    
        .text-wrapper h1{
            text-align: center;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .text-wrapper h2{
            font-size: 1.5rem;
        }