
        /* General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Outfit', sans-serif;
            background-color: #4C98CA;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        /* Header */
        header {
            background-color: #f5f5f5;
            padding: 5px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 500;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 80px;
        }
        .logo{
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
         .logo h1 {
             font-size: 20px; 
             color: #333; 
             margin: 5px 0; 
             justify-content: space-between;
            }
            
            
        
        .logo img {
            height: 60px;
            width: auto;
            margin-bottom: 5px;
            
            
        }
        nav ul {
            list-style-type: none;
            display: flex;
            gap: 20px;
            color: #000;
            
        }
        nav ul li {
            margin: 20px;
            color: #000;
        }

        nav ul li a{
            text-decoration: none;
            font-weight: bold;
            color: #000;
            
        }
        
        .button {
            padding: 15px 20px;
            background-color: #4C98CA;
            color: white;
            border-radius: 45px;
            font-weight: bold;
        }
        /* Hero Section */
        .hero {
            display: flex;
            justify-content: center;
            padding: 20px 0;
            background-color: #4C98CA;
            position: relative;
        }
        .hero-content {
            position: absolute;
            left: 50px;
            z-index: 1;
        }
        .hero-content h1 {
            font-size: 72px;
            color: white;
            font-weight: bold;
            max-width: 550px;
            margin: 80px auto;
            margin-bottom: 10px;
            
            
        }
        .hero-content p {
            font-size: 20px;
            color: white;
            margin: 0 auto;
            max-width: 450px;
        }
        .hero-image img {
            width: 100%;
            height: auto;
            
        }
        /* Rooster Section */
        .rooster {
            padding: 50px 20px;
            background-color: #fff;
            min-height: 90vh;
            display: flex;
            flex-direction:row;
            
            
        }
        .rooster h2 {
            font-size: 28px;
            margin-bottom: 20px;
            position: relative;
            
            

            
        }
        .rooster-content {
            background-color: #e1e1e1;
            padding: 20px;
            border-radius: 10px;
            margin-top: 65px;
            width: 40%;
            height: auto;
            box-sizing: border-box;
        }
        .rooster-placeholder {
            width: 100%;
            height: 92%;
            background-color: #ccc;
            box-sizing:content-box;
            margin-top: 20px;
        }
        /* Training Section */
        .training {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 50px 20px;
            background-color: #000;
            color: white;
            min-height: 90vh;
        }

        .training-text h1{
            font-size: 20px;
            background-color: #0E4778;
            margin-left: 30px;
            position: relative;
            top: -250px;

        }

        b {
            display: block;
            flex-direction: column;
            position: relative;
            margin-bottom: 10px; /* Adjust the spacing between links */
            margin-left: 30px;
            top: -175px;
            border-bottom: 10px solid #0E4778; /* Adjust color and thickness */
            padding-bottom: 5px; /* Adds spacing between text and underline */
            margin-bottom: 10px; /* Space between title and next content */
            
          }

          
          
        .training-text h2 {
            font-size: 56px;
            max-width: 550px;
            left: 0;
            position: relative;
            top: -235px;
            margin-left: 30px;
            
            
        }
        .training-text p {
            font-size: 16px;
            margin-top: -235px;
        }
        .training-image img {
            display: block;
            height: 750px;
            border-radius: 0;
        }
        /* Abonnementen Section */
        .abonnementen {
            padding: 50px 20px;
            display: block;
            justify-content: space-between;
            align-items: center;
            padding: 50px 20px;
            background-color: #ffffff;
            color: rgb(0, 0, 0);
            min-height: 90vh;
        }
        .abonnementen h2 {
            font-size: 28px;
            text-align: center;
            margin-bottom: 40px;
        }
        .abonnementen-cards {
            display: flex;
            justify-content: space-around;
           height: 600px;
          
        }
        .abonnement-card {
            background-color: #e7e3e3;
            padding: 20px;
            width: 30%;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        /* Quote Section */
        .quote {
            background-color: #007bff;;
            color: white;
            padding: 0;
            position: relative;

            
        }
        .quote p {
            font-size: 62px;
            font-weight: bold;
            max-width: 550px;
            position: absolute;
            top: 200px;
            left: 50px;
            z-index: 1;
            padding: 10px
            
            ;

        }
        .quote-image img {
            width: 100%;
            height: auto;
            border-radius: 5px;
            
        }
        /* Footer Section */
        footer {
            background-color: #007bff;
            color: white;
            padding: 20px;
            text-align: center;
            min-height: 45vh;
        }
        .footer-content{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 90%;
            
        }
        .footer-content p {
            margin: 5px 0;
        }
      