:root{
    --blue-color: #0B8FE1;
    --purple-color: #6807A1;
    --black-color: #1B1B1B;
    --platinum-green: #E6EDED;
    --bb-green: #042825;
    --cadet-green: #A6C1BF; 
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Figtree;
    overflow-x: hidden;
}

.mobile-accordion {
    display: none;
}

.wrapper {
    width: 90%;
    margin: 80px 80px;
    
}

/* Buttons */

.btn{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    padding: 16px 48px;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn.light {
    border-radius: 32px;
    padding: 10px 48px;
    
    background: #fff;
    color: var(--blue-color);
}

.btn.gradient {
    border: 2px solid;
    border-color: var(--blue-color);
    color: var(--purple-color);
    border-radius: 24px;
    padding: 10px 32px;
}

.btn.gradient-background{
    display: flex;
    justify-content: center;
    font-size: 20px;
    border-radius: 24px;
    padding: 10px 32px;
    width: 250px;
    border-radius: 32px;
    background: linear-gradient(90deg, var(--blue-color) 0%, var(--purple-color) 100%);
    transition: transform 0.3s ease;
    border: none;

    color: #fff;
}

.btn.gradient-background:hover {
    transform: scale(1.05);
}

/* Header */

header {
    width: 100%;
    background-image: url('images/index-images/hero-section/hero-1920.avif');
    background-size: cover;  /* This makes the image cover the entire header */
    background-position: center;  /* Centers the image */
    background-repeat: no-repeat;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;  /* Changed from bottom: 0 to top: 0 */
    width: 100%;
    height: 100%;  /* Changed from 50% to 100% */
    background: linear-gradient(to top, 
        rgba(82, 41, 177, 0.3) 0%,  
        rgba(84, 39, 176, 0.15) 20%,   
        rgba(0, 0, 0, 0.2) 100%  /* Added dark overlay at the top */
    );
}

header .wrapper {
    position: relative;
    z-index: 1;
}

/* video section */

.video-en, .video-de {
    display: none;
}

.lang-en .video-en {
    display: block;
}

.lang-de .video-de {
    display: block;
}

.video-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 2rem 1rem;
    margin: 0 auto;
}

.video-section iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 800px;
    border: none;
}

/* navigation section */

nav {
    width: 90%;
    max-width: 1280px;
    display: flex;
    margin: 0 5%;
    padding-top: 20px;
    justify-content: space-between;
    align-items: center;
}
nav .right{
    display: flex;
    flex-direction: row;
    gap: 0px;
}

nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
    z-index: 1;
}

nav ul li a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--purple-color);
}

nav ul a{
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    text-align: center;
    z-index: 1;

    color: #FFF;
}

nav .logo-mobile{
    display: none;
}



/* Hero section */

.hero-section {
    display: flex; 
    box-sizing: border-box;
    margin-top: 4rem;
}

.hero-section .left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 80px;
    margin-bottom: 5rem;
    white-space: no-wrap;
}

.hero-section .header-content{
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.hero-section .left h1{
    font-size: 65px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 0;
    padding: 0;
    margin: 0;
    white-space: no-wrap;

    color: #fff;
}

.hero-section .left .paragraph-content {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.hero-section .left p {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;


    color: #fff;
}

.hero-section .left p span {
    font-weight: 700;
}

.hero-section .header-content h1.rotating-text {
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease-in-out;
    white-space: no-wrap;
}

.hero-section .header-content h1.active {
    opacity: 1;
    display: block;
    animation: fadeIn 0.5s ease-in-out;
    white-space: no-wrap;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .right{
    display: flex;
    justify-content: flex-end; 
    align-items: flex-end;
    margin-bottom: 4.5rem;
    width: 51%;
    padding: 0;
}

.hero-section .right .btn.gradient-background{
    display: flex;
    justify-content: center;
    font-size: 18px;
    border-radius: 24px;
    padding: 14px 0;
    width: 250px;
    border: 3px solid;
    border-radius: 32px;
    border-color: #fff;
}

/* Introduction section */

.introduction-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.introduction-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 80px 0;
    padding-top: 100px;
    gap: 3rem;
    
}

.introduction-top .image-container {
    display: flex;
    justify-content: flex-start; 
    position: relative;
    padding-left: 20px;
}

.introduction-top img {
    width: 39rem;
    position: relative;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 16px;
    z-index: 2;
}

.introduction-top .image-container .bg {
    position: absolute;
    width: 608px;
    height: 397px;
    background: linear-gradient(90deg, #6807A1 0%, #0B8FE1 100%);
    border-radius: 20px 100px 20px 60px;
    left: 0px;
    top: -25px;
    z-index: 1;
}

.introduction-top .content{
   display: flex;
    flex-direction: column;
   justify-content: flex-start;
}

.introduction-top .content h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
    color: var(--black-color);
}

.introduction-top .content p {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 0px;
    max-width: 650px;
    color: var(--black-color);
}

.introduction-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 80px 0;
    gap: 3rem;

}

.introduction-bottom .image-container {
    position: relative;
    width: 50%;
}

.introduction-top .image-container .bg {
    position: absolute;
    width: 608px;
    height: 397px;
    background: linear-gradient(90deg, #6807A1 0%, #0B8FE1 100%);
    border-radius: 20px 100px 20px 60px;
    left: 0px;
    top: -25px;
    z-index: 1;
}

.introduction-bottom .image-container .bg {
    position: absolute;
    width: 608px;
    height: 397px;
    background: linear-gradient(90deg, #6807A1 0%, #0B8FE1 100%);
    border-radius: 20px 100px 20px 60px;
    left: 40px;
    top: 50px;
    z-index: 1;
}

.introduction-bottom img {
    width: 39rem;
    position: relative;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 16px;
    z-index: 2;
}

.introduction-bottom .content {
    flex: 1;
    max-width: 43rem;
}

.introduction-bottom .content h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap;
    margin: 0;

    color: var(--black-color);
}

.introduction-bottom .content p {
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    padding-top: 0;
    margin-top: 24px;
    margin-bottom: 40px;
    color: var(--black-color);
}

.introduction-bottom .btn.gradient-background {
    font-size: 18px;
    padding: 13px 32px;
    border-radius: 32px;
    background: linear-gradient(90deg, var(--blue-color) 0%, var(--purple-color) 100%);
    color: #fff;
    text-decoration: none;
    width: 196px;
    border: none;
}
.lang-de .introduction-bottom .btn.gradient-background {
    text-align: center;
}


/* Members section */

.p-bottom-mobile{
    display: none;
}


.members-background {
    background: linear-gradient(114deg, var(--blue-color) 0%, var(--purple-color) 100%);
}

.members-section{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 48px 0 0 35px;
}

.members-background .wrapper {
    padding: 0;
}

.members-section .left{
    display: flex;
    flex-direction: column;
}

.members-section .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;

    color: #fff;
}

.lang-de .members-section .right{
    max-width: 550px;
}

.members-section .right p{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.members-section .right h2{
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.members-section .btn {
    position: relative;
    width: 194px;
    margin: 48px 0;
    padding: 16px 48px;
    background: #fff;
    border-radius: 32px;
    border: none;
}

.members-section .btn span {
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}

.members-section img{
    width: 713.75px;

}

/* Industry section */
.industry-section{
    font-size: 18px; 
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    color: #1B1B1B; 
}

.industry-section .content .desktop{
    display: flex;
    flex-direction: row;
    gap: 40px;
    
}

.industry-section h2{
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    margin-bottom: 60px;

    color: var(--black-color);
}

.industry-section .left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 400px;
}

.industry-section .left .btn{
    list-style: none;
    text-decoration: none;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 11px;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    height: auto;
    padding: 12px 12px;
    width: auto;

    color: var(--black-color);
}

.industry-section .left .btn.btn.gradient-background{
    list-style: none;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 11px;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border-radius: 8px;
    height: auto;
    width: auto;
    padding: 12px;

    color: #fff;
}

.industry-section .content .image-container img{
    width: 840px;
}

.content-display {
    display: none;
}

.content-display.active {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.right .content-categories{
    padding-left: 1rem;
}

.right .content-categories ul{
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.industry-section .content .right{
    display: flex;
    flex-direction: column;
}

.industry-section .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
}

.industry-section .content .right .content-categories p::before{
    content: "•";
    margin-right: 10px; 
    color: #1B1B1B; 
}

.industry-section .content .right .content-categories p{
    font-size: 18px; 
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    color: #1B1B1B; 
}

.industry-section .content .right .image-container{
display: flex;
justify-content: center;
align-items: center;
}

/* End of Industry section */



/* Target group section */

.target-group-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 5% 10%;
    padding-right: 5%; 
    background: linear-gradient(114deg, var(--blue-color) 0%, var(--purple-color) 100%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20%;
}

.target-group-section .content {
    flex: 1;
    max-width: 50%;
}

.target-group-section .content h2 {
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #FFF;
}

.target-group-section .content p {
    font-size: 21px;
    margin-bottom: 3rem;
    padding-top: 5.75rem;
    color: #FFF;
}



.target-group-section .image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.target-group-section .smaller-image {
    display: flex;
    gap: 0.625rem;
    padding-left: 0.225rem;
}

.target-group-section .smaller-image img {
    width: 14rem;
    border-radius: 8px;
    max-height: 130px;
    height: auto;
}

#shorter-image{
    height: 111px;
}

.target-group-section .bigger-image img {
    width: 29.313rem;
    border-radius: 8px;
}

.target-group-section .btn {
    position: relative;
    width: 194px;
    margin: 48px 0;
    background: #fff;
    border-radius: 32px;
    border: none;
}

.target-group-section .btn span {
    font-family: Figtree;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
}



/* End of target group section */


.benefits-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 190px;
}

.benefits-section h2{
    font-size: 55px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;

    color: var(--black-color);
}

.benefits-section .content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-section .content h3{
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;

    color: var(--black-color);
}

.benefits-section .content p{
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    margin-top: 12px;
    margin-bottom: 57px;

    color: var(--black-color);
}

/* End of benefits section */

.contact-section{
    display: flex;
    padding-left: 37px;
    padding-right: 69px;
    padding-bottom: 80px;

    background: linear-gradient(114deg, var(--blue-color) 0%, var(--purple-color) 100%);
}

.contact-section .content{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15.625rem;
}

.contact-section .content .left{
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.contact-section .content .left .top-left{
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 104px;
    gap: 24px;
}

.contact-section .content .left .top-left h2{
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    white-space: nowrap;
    color: #fff;
}
.contact-section .content .left .top-left p{
    padding: 0;
    margin: 0;
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 450px;

    color: #fff;
}

.contact-section .content .left .bottom-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.contact-section .content .left .bottom-left .content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    max-width: 452px;

    background: #fff;
}

.contact-section .content .left .bottom-left .content div{
    display: flex;  

    align-items: center;
    padding: 0;
    margin: 32px;
    gap: 16px; 
}

.contact-section .content .left .bottom-left div p{
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin: 0;
}

.contact-section .content .right{
    display: flex;
    flex-direction: column;
    padding: 32px;
    margin: 0;
    margin-top: 80px;
    border-radius: 16px;
    width: 489px;

    background: #fff;
}

.contact-section .content .right .form-group {
    margin-bottom: 20px;
    position: relative;
  }

  .contact-section .content .right .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;

    color: #1B1B1B;
  }

  .contact-section .content .right .form-group input{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
  }

  .contact-section .content .right .submit{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-section .content .right .btn.gradient-background{
    padding: 12px 20px;
    max-width: 425px;
    gap: 8px;
    width: 100%;

    text-align: center;
    font-family: Figtree;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.064px;
    color: var(--Content-Reversed, #FFF);
  }

  /* End of contact section */

  .footer-container {
    width: 100%;
    background: #D7F0F6;
    display: flex;
    justify-content: center;
}



.footer-container .footer-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section .footer-upper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 0;
}

.footer-container .footer-section .footer-upper{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 114px;
    padding: 0;
}

.footer-container .footer-section .footer-upper .contact h4{
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;

    background: var(--Primary, linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-container .footer-section .footer-upper .contact p{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 6px;
    margin: 0;

    color: #1B1B1B;
}

.footer-container .footer-section .footer-upper ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    gap: 64px;


    color: #1B1B1B;
}

.footer-container .footer-section .footer-upper ul a{
    text-decoration: none;
    color: #1B1B1B;
}

.footer-container .footer-section .footer-upper .btn.gradient-background{
    display: flex;
    justify-content: center;
    padding: 12px 20px; 
    gap: 10px;
    width: 197px;

    /* text in button */
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;

    color: #fff;
  }

  .footer-container .footer-section .footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 67px 0 0 0;
    text-align: center;
}


.footer-container .footer-section .footer-bottom img {
    width: 130px;
    margin: 0 auto;
}

.footer-container .footer-section .footer-bottom .content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 13px;
    margin-top: 20px;
}

.footer-container .footer-section .footer-bottom .content-section p{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    color: #1B1B1B;
}

.footer-container .footer-section .footer-bottom .content-section a{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    color: #1B1B1B;
}


/* Mobile styling */
@media (max-width: 767px) {
    /* Remove all fixed widths */
    .hero-section,
    .introduction-section,
    .members-section,
    .industry-section,
    .benefits-section,
    .contact-section,
    .contact-section .content .right,
    .contact-section .content .left,
    .introduction-top .image-container,
    .introduction-bottom .image-container,
    .members-section img,
    .industry-section .content .right .image-container img {
        width: 100%;
        max-width: 100%;
    }

    .desktop{
        display: none;
    }

    .desktop .btn{
        display: none;
    }

    nav .right{
        display: none;
    }

    /* Fix nested containers */
    .introduction-top,
    .introduction-bottom,
    .members-section,
    .industry-section .content {
        flex-direction: column;
        gap: 0px;
    }

    .introduction-bottom .content-wrapper{
        margin-bottom: 10rem;
    }

    /* Remove fixed dimensions */
    .introduction-top .image-container .bg,
    .introduction-bottom .image-container .bg {
        width: 100%;
        height: auto;
        position: relative;
    }

    *, 
    *::before,
    *::after {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }

    a, 
    button, 
    .btn,
    .mobile-nav-toggle {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        outline: none !important;
    }

    :focus {
        outline: none !important;
    }

    .desktop-buttons{
        display: none;
    }

    body{
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }



    /* Header section */

    /* Add to prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
    }

    header {
        width: 100%;
        height: 35rem;
        background-image: url('images/index-images/hero-section/hero-mobile-767.avif');
        background-size: cover;
        background-position: 70% center;
        background-repeat: no-repeat;
        overflow: hidden;
        position: relative;
    }


    /* Navigation */
    nav {
        display: flex;
        flex-direction: row;
        width: 100%;
        padding: 2% 5%;
        margin: 0 auto;
        background: #fff;
        position: relative;
    }

    nav ul{
        display: none;
    }

    nav ul a {
        font-family: Figtree;
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #fff;
    }

    nav .btn.btn.gradient{
        display: none;
    }

    nav .logo{
        display: none;
    }
    
    nav .logo-mobile{
        display: flex;
        order: 1;
        width: 87px;
        margin: 0;
    }

    nav .logo-mobile img{
        width: 87px;
    }

    nav .mobile-nav-toggle {
        order: 2;
    }

    .sr-only {
        position: absolute;
        width: 24px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;

        background: #042825;
    }

    .mobile-nav-toggle {
        position: relative;
        top: auto;
        right: auto;
        background: none;
        margin-left: auto;
        border: none;
        padding: 8px;
        margin: 0;
        cursor: pointer;
        outline: none;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: all;
        z-index: 9999;
    }
    
    .mobile-nav-toggle:focus {
        outline: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 25px;
        pointer-events: none;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--black-color);
        border-radius: 3px;
        transition: 0.3s ease;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        background: linear-gradient(114deg, var(--blue-color) 0%, var(--purple-color) 100%);
        padding: 0;
        width: 100%;
        margin: 0;
        transform: translateX(100%);
        transition: all 0.3s ease-in-out;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
    }
    
    .mobile-menu[data-visible="true"] {
        transform: translateX(0%);
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu .menu-header {
        position: relative;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2% 5%;
        margin-top: 9px;
        background: transparent;
    }

    .mobile-menu .menu-header .menu-logo {
        width: 87px;
    }

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    list-style: none;
    padding: 40px 0; /* Remove horizontal padding */
    margin: 0;
}
    
    .mobile-menu[data-visible="true"] {
        transform: translateX(0%);
    }
    
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 16px 0;
    }
    

    .mobile-nav-list .btn {
        position: relative;
        width: 194px;
        margin: 15px 0;
        background: #fff;
        border-radius: 32px;
        border: none;
    }

    .mobile-nav-list .btn span {
        font-family: Figtree;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        background: linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        z-index: 1;
    }
    

    .mobile-nav-list .btn.gradient-background{
        border: none;
    }

    .wrapper{
        width: 100%;
        margin: 0;
        padding: 0 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    header .wrapper {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    /* Hero section */

    .hero-section{
        display: flex;
        align-items: flex-start;
        min-height: 2rem;
        flex-direction: column;
        margin: 0;
        padding: 0;
        overflow: hidden;
        box-sizing: border-box;
        margin-top: 2rem;
    }

    .hero-section .left{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        gap: 16px;
    }

    .hero-section .left .paragraph-content {
        margin-bottom: 4.7rem;
    }

    .hero-section .left .header-content{
        padding-right: 40px;
    }

    .hero-section .left .header-content h1{
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;

    color: #FFF;
    }

    .hero-section .left .paragraph-content p{
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        padding: 0;

        color: #FFF;
    }

    .hero-section .right{
        display: flex;
        width: 100%;
        padding: 0;
        
    }

    .hero-section .right .btn.gradient-background{
        padding: 16px 48px;
        width: 100%;
        height: 56px;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

        color: var(--Platinum-Green, #E6EDED);
    }

    /* Introduction */

    .introduction-section{
        display: flex;
        flex-direction: column;
    }

    .introduction-section .introduction-top,
    .introduction-section .introduction-bottom{
        display: flex;
        flex-direction: column-reverse;
        padding: 40px 0;
        align-items: center;
    }

    .introduction-section .introduction-top .content,
    .introduction-section .introduction-bottom .content{
        display: flex;
        flex-direction: column;
        order: 1;
        padding: 0 5px;
        
        gap: 20px;
    }

    .introduction-section .introduction-top .content h2,
    .introduction-section .introduction-bottom .content h2{
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        white-space: normal;

        color: var(--BB-Green, #042825);
    } 
    .introduction-section .introduction-top .content p,
    .introduction-section .introduction-bottom .content p {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        max-width: 340px;
        padding: 0;

        color: var(--BB-Green, #042825);
    }

    .introduction-section .introduction-top .image-container,
    .introduction-section .introduction-bottom .image-container{

        display: flex;
        justify-content: center;
        padding: 0;
        margin: 20px 0;
        position: relative;
        order: 2;
    }  

    .introduction-section .introduction-top .image-container img,
    .introduction-section .introduction-bottom .image-container img{
        width: 100%;
        height: 100%;
        position: relative;
        box-shadow: 0px 4px 4px 0px #00000040;
        border-radius: 16px;
        z-index: 2;
    }

    .introduction-section .introduction-top .image-container .bg{
        display: none;
        position: absolute;
        width: 98%;
        height: 100%;
        border-radius: 20px 100px 20px 60px;
        left: -4px;
        top: -10px;
        z-index: 1;

        background: linear-gradient(90deg, #6807A1 0%, #0B8FE1 100%);
    }

    

    .introduction-section .introduction-bottom .image-container .bg{
        display: none;
        position: absolute;
        width: 98%;
        height: 100%;
        border-radius: 20px 100px 20px 60px;
        left: -4px;
        top: -10px;
        z-index: 1;

        background: linear-gradient(90deg, #6807A1 0%, #0B8FE1 100%);

    }

    .introduction-section .introduction-bottom .btn.gradient-background{
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.09px;
        order: 3;
        width: 100%;
        padding: 16px 48px;


        color: var(--Platinum-Green, #E6EDED);
    }

    .introduction-section .introduction-bottom .content{
        order: 1;
    }
    
    .introduction-section .introduction-bottom .image-container {
        order: 2;
    }
    
    .introduction-section .introduction-bottom .btn.gradient-background {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 7px;
        
        width: 100% ;
    }

    /* Members section */

    .members-section .right .p-bottom {
        display: none !important;
    }

    .members-section{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 0 0 0;
    }

    .members-section .right{
        order: 1;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .members-section .right h2{
        text-align: center;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        padding: 0;

        color: var(--Base-White, #FFF);
    }

    .members-section .right p{
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        
        padding: 0;
        margin: 0;

        color: var(--Base-White, #FFF);

    }

    .members-section .right .p-bottom-mobile{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: start;
        padding-left: 5px;
        gap: 10px;
    }

    .lang-de .members-section .right .p-bottom-mobile{
        padding-left: 40px;
        padding-right: 10px;
    }

    .members-section .right .p-bottom-mobile p{
        text-align:start;
        font-size: 21px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        padding: 0;

        color: var(--Base-White, #FFF);
    }

    .members-section .btn {
        position: relative;
        width: 194px;
        margin: 48px 0;
        padding: 16px 48px;
        background: #fff;
        border-radius: 32px;
        border: none;
    }

    .members-section .btn span {
        font-family: Figtree;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        background: linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        z-index: 1;
    }
    .members-section .left{
        order: 2;
        display: flex;
        flex-direction: column;
        flex-direction: flex-end;
        width: 395px;
        height: 305px;
        align-items: end;
    }

    .members-section img{
        position: relative;
        overflow-x: hidden;
        left: 10%;
    }

    /* Industry section */

    .industry-section .content .right{
        display: none;
    }

    .industry-section{
        display: flex;
        flex-direction: column;
        padding: 40px 0;
    }

    .industry-section h2{
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

        color: var(--BB-Green, #042825);
    }

    .industry-section .content{
        display: flex;
        flex-direction: column;
        /* background: #D7F0F6; */
        transition: background-color 0.3s ease;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
        gap: 15px;

    }

    .industry-section .content .left{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        border-radius: 0;
        gap: 16px;
        width: 100%;
    }

    .industry-section .content .mobile{
        display: flex;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
        border-bottom: 1px solid var(--Cadet-Green, #A6C1BF);
    }

    .industry-section .content .image-container{
        display: flex;
        width: 100%;
        padding-bottom: 16px;
        justify-content: center;
    }

    .industry-section .content .image-container img{
        width: 100%;
        border-radius: 12px;
    }

    .industry-section .left {
        min-height: auto;
    }

    .industry-section .content .left .btn{
        width: auto;
        background: var(--Blackground, #FFF);
    }

    .mobile-accordion{
        width: 100%;
        display: flex;
        gap: 16px;
        flex-direction: column;
        justify-content: flex-start;
    }

    
    .mobile-accordion .mobile .content .content-categories{
        padding-left: 5px;
    }

    .mobile-accordion .mobile .content .content-categories ul {
        list-style: none;
        padding: 0;
    }

    .mobile-accordion .content .content-categories ul li {
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 20px;
        padding-bottom: 20px;
        font-size: 20px;
    }

    .mobile-accordion .content .content-categories ul li:first-child{
        margin-top: 16px;
    }

    .mobile-accordion .content .content-categories ul li:last-child{
        padding-bottom: 0;
    }
        

    .mobile-accordion .content .content-categories ul li::before {
        content: "";
        position: absolute;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: #042825;
        border-radius: 50%;
    }

    .mobile-accordion .mobile{
        display: flex;
        flex-direction: column;
        margin-top: 16px;
    }

    .mobile-accordion details {
        transition: all 0.3s ease;
    }

    .mobile-accordion details .content {
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-accordion details[open] .content {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-accordion details summary {
        list-style: none;
        position: relative;
        padding-top: 16px;
        padding-bottom: 8px;

        width: 100%;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;

        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

        color: var(--BB-Green, #042825);

    }
    
    .mobile-accordion details summary::after {
        content: '';
        position: absolute;
        width: 10px;
        right: 0;
        height: 10px;
        border-right: 2px solid #042825;
        border-bottom: 2px solid #042825;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .industry-section .content details[open] ~ .content,
    .industry-section .content details[open] {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);

        background: #D7F0F6;
    }

    .mobile-accordion details[open] {
        transition: background-color 0.3s ease;

        background: #D7F0F6;

    }
    
    .mobile-accordion details[open] summary::after {
        transform: rotate(-135deg);
    }
    
    /* Remove marker in Firefox */
    .mobile-accordion details summary::-webkit-details-marker {
        display: none;
    }

    .btn.gradient {
        border: none; /* Remove the black border */
    }

    .btn.gradient-background {
        border: none; /* Remove the black border */
    }

    .members-section .btn {
        border: none; /* Remove the black border */
    }

    .target-group-section .btn {
        border: none; /* Remove the black border */
    }

    /* Benefits section */

    .benefits-section {
        flex-direction: column;
        padding: 40px 0;
        gap: 32px;
        
    }
    
    .benefits-section h2 {
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: var(--BB-Green, #042825);
    }

    .benefits-section .content{
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .benefits-section .content .piece{
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .benefits-section .content h3 {
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: var(--BB-Green, #042825);

    }
    
    .benefits-section .content p {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 0;
        margin: 0;

        color: var(--BB-Green, #042825);
    }
    
    /* Target group section */

    .target-group-section{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50%);
        padding-right: calc(50vw - 50%);
        padding: 40px 0;

        background: var(--Primary, linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%));
    }

    .target-group-section .content{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        padding: 0 1rem;
        gap: 1rem;
    }

    .target-group-section .content h2{
        color: var(--Base-White, #FFF);
        text-align: center;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-family: Figtree;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

    }

    .target-group-section .content p{
        margin: 0;
        text-align: center;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-family: "DM Sans","Figtree";
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding-top: 0;

        color: var(--Base-White, #FFF);
    }

    .lang-de .target-group-section .content p{
        text-align: start;
    }

    .target-group-section .btn {
        position: relative;
        padding: 16px 48px;
        margin: 48px 0;
        background: #fff;
        border-radius: 32px;
        width: auto;
        border: none; /* Remove the black border */
    }

    .target-group-section .btn span {
        font-family: Figtree;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        
        background: linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        z-index: 1;
    }

    .target-group-section .image-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }


    .smaller-image{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap:  0.395rem;
        width: 100%;
    }

    .target-group-section .smaller-image img{
        width: 8.438rem;
        min-height: 90px;
    }

    #shorter-image{
        height: 90px;
    }

    .bigger-image{
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 7px;
    }

    .target-group-section .bigger-image img{
        width: 18.5rem;
    }

    /* Contact section */

    .contact-section .content.desktop{
        display: none;
    }

    .contact-section{
        padding: 40px 0;
        margin: 0;
    }

    .contact-section .content {
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .contact-section .wrapper .content > * {
        width: 100%;
        align-items: center;
    }

    .contact-section .wrapper .content .top-left{
        display: flex;
        flex-direction: column;
        margin-top: 0;
        gap: 16px;
        order: 1;
    }

    .contact-section .wrapper .content .top-left h2{
        white-space: normal;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;

        color: #FFF;

    }

    .contact-section .wrapper .content .top-left p{
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;

        color: #FFF;

    }
    .contact-section .wrapper .content .right{
        order: 2;
       max-width: 452px;
        padding: 24px;
        margin: 0;
        border-radius: 16px;
        background: #fff;
    }

    .contact-section .content .right .form-group {
        width: 100%;
    }
    
    .contact-section .content .right .form-group input {
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-section .content .right .submit {
        width: 100%;
    }
    
    .contact-section .content .right .btn.gradient-background {
        width: 100%;
    }

    .contact-section .wrapper .content .bottom-left{
        order: 3;
        align-items: center;
    }

    .contact-section .wrapper .content .bottom-left .content{
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 16px;
        margin-bottom: 32px;
        padding: 32px;
        max-width: 500px;

        background: #fff;
    }

    .contact-section .wrapper .content .bottom-left .content div{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        align-items: center;
        margin: 10px;
        gap: 16px;
        
    }

    .contact-section .wrapper .content .bottom-left .content p{
        font-family: Figtree;
        font-size: 21px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        letter-spacing: -0.21px;

        color: #1D1F1E;
    }

    .contact-section .content .right .form-group label {
        display: block;
        margin-bottom: 10px;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        color: #1B1B1B;
    }


    /* Footer section */

    .footer-container .footer-section {
        display: flex;
        flex-direction: column;
        margin: 28px 0 24px 0;
        width: 100%;
        padding: 0;
    }
    
    .footer-container .footer-section .footer-upper {
        display: flex;
        flex-direction: column;
        margin: 0;
        width: 100%;
        gap: 24px;
        align-items: center;
    }
    
    .footer-container .footer-section .footer-upper > * {
        width: 100%;
    }

    .footer-container .footer-section .footer-upper .nav-list ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
        width: 100%;
        gap: 24px;
        padding: 0;

        font-family: Figtree;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;

        color: #1B1B1B;

    }

    .footer-container .footer-section .footer-upper .submit {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        
        order: 2;
    }

    .footer-container .footer-section .footer-upper .submit .btn{
        width: 90%;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        padding: 12px 20px;
        line-height: 24px;

        color: var(--Content-Reversed, #FFF);

    }
    
    .footer-container .footer-section .footer-upper .contact{
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-container .footer-section .footer-bottom {
        padding-top: 23px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
        
        align-items: center;
    }

    .footer-bottom img{
        width: 37%;
    }

    .footer-bottom .content-section{
        display: flex;
        flex-direction: row;
        gap: 8px;
        margin-bottom: 24px;
    }

    .footer-bottom .content-section p{
        margin: 0;
    }

    .footer-container .footer-section .footer-bottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 23px 0 0 0;
        gap: 0;
        text-align: center;
    }

    .footer-container .footer-section .footer-bottom .content-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 13px;
        margin-top: 10px;
    }
}


/* laptop screens and up */
@media (min-width: 1024px) {
    .mobile-nav-toggle,
    .mobile-menu,
    .logo-mobile,
    .mobile-nav-list,
    .hamburger,
    .sr-only{
        /* display: flex !important; */
        display: none;
    }

    .content.mobile{
        display: none;
    }


    .wrapper {
        width: 90%;
        margin: 80px auto;
        max-width: 1500px;
    }

    nav {
        width: 90%;
        max-width: 1500px;
        display: flex;
        margin: 0 auto;
        padding-top: 20px;
        justify-content: space-between;
        align-items: center;
    }
    
    nav ul {
        display: flex;
        gap: 40px;
        list-style: none;
        z-index: 1;
    }

    .target-group-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 5% 5%;
        background: linear-gradient(114deg, var(--blue-color) 0%, var(--purple-color) 100%);
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    /* Add a container div inside target-group-section */
    .target-group-section .inner-container {
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 10%;
    }


    .contact-section .content .left .top-left {
        margin-top: 0px;
    }


}

/* Tablet and laptop screen (small) */
@media (min-width: 768px) and (max-width: 1439px){
    .mobile-nav-toggle,
    .mobile-menu,
    .logo-mobile,
    .mobile-nav-list,
    .hamburger,
    .sr-only{
        /* display: flex !important; */
        display: none;
    }

    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Container widths */
    .wrapper {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 3%;
    }


    /* Buttons */
    .btn {
        padding: 12px 32px;
        font-size: 16px;
    }


    /* Fix full-width sections */
    .members-background,
    .target-group-section,
    .contact-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    /* Fix content width */
    .industry-section,
    .benefits-section {
        width: 100%;
        padding: 40px 20px;
    }


    /* Fix */

    

    header {
        width: 100%;
        background-image: url('images/index-images/hero-section/hero-1920.avif');
        background-size: cover;     /* Change back to cover for full header coverage */
        background-position: 80% center;  /* Adjust position to show man properly */
        background-repeat: no-repeat;
        position: relative;
    }

    /* hero section */

    .hero-section {
        display: flex;
        align-items: center;
        align-items: flex-end;
        padding-bottom: 10vh;
        box-sizing: border-box;
    }
    

    .hero-section .left h1 {
        font-size: 65px;
        font-style: normal;
        font-weight: 700;
        margin-top: 0;
        color: #fff;
        white-space: nowrap;
    }

    .hero-section .left p {
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        margin: 0;
        color: #fff;
    }

    .hero-section .right .btn.gradient-background {
        font-size: 16px;
        border-radius: 24px;
        padding: 12px 0;
        width: 200px;
        border: 2px solid;
        border-radius: 32px;
        border-color: #fff;
    }

    /* introduction section */


    

    .introduction-section{
        width: 100%;
    }

    .industry-section .content .image-container img {
        width: 500px;
    }


    /* Members section */

    .members-section .btn {
        position: relative;
        margin: 30px 0;
        padding: 14px 30px;
        background: #fff;
        border-radius: 32px;
        border: none;
    }

    .members-section .btn span {
        font-family: Figtree;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        background: linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        z-index: 1;
    }

    .members-section .right h2 {
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        color: #FFF;
    }

    .members-section .right p {
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        color: #FFF;
    }

    .members-section {
        justify-content: center;
    }

    .members-section img {
        width: 550px;
        margin-bottom: -4px;
    }

    /* Industry section */

    .wrapper .industry-section{
        transform: scale(0.75); 
        transform-origin: top;
    }



    /* Target group section */

    .target-group-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 3% 3%;
        background: linear-gradient(114deg, var(--blue-color) 0%, var(--purple-color) 100%);
        display: flex
    ;
        flex-direction: row;
        justify-content: center;
        gap: 15%;
    }
    
    .target-group-section .inner-container{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: 68.75rem;
        gap: 1rem;
    }

    .target-group-section .content h2 {
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #FFF;
    }

    .target-group-section .content p {
        font-size: 17px;
        margin-bottom: 2rem;
        padding-top: 3rem;
        color: #FFF;
    }

    .target-group-section .content {
        padding-left: 1rem;
    }

    .target-group-section .image-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.425rem;
        align-items: center;
    }

    .target-group-section .smaller-image {
        display: flex;
    }

    .target-group-section .smaller-image img {
        width: 10.4rem;
        border-radius: 8px;
        height: 111px;
    }

    .target-group-section .bigger-image img {
        width: 21.5rem;
        border-radius: 8px;
    }

    /* benefits section */

    .benefits-section {
        display: flex
    ;
        flex-direction: row;
        justify-content: space-between;
        padding: 80px 0;
        gap: 80px;
    }

    .benefits-section h2 {
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #042825;
    }

    .benefits-section .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 3%;
    }

    .benefits-section .content h3 {
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        color: var(--black-color);
    }

    .benefits-section .content p {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        margin-top: 12px;
        margin-bottom: 57px;
        color: var(--black-color);
    }

    /* Contact section */

    .contact-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 0;
        padding-bottom: 80px;
        gap: 60px;
    }

    .contact-section .content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 7rem;
    }

    .contact-section .content .left .top-left h2 {
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        white-space: nowrap;
        color: #fff;
    }

    .contact-section .content .left .top-left p {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        color: #fff;
    }

    .contact-section .content .left .bottom-left .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 16px;
        max-width: 350px;
        background: #fff;
    }

    .contact-section .content .left .bottom-left div p {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 36px;
        margin: 0;
    }



    .contact-section .content .right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        min-width: 350px;
        max-width: 30rem;
    }

    

    .content.mobile{
        display: none;
    }

    /* Summary styling (accordion headers) */
    details {
        overflow: hidden;
    }

    summary {
        padding: 24px 32px;
        background: #fff;
        border-radius: 8px;
        font-size: 20px;
        font-weight: 500;
        cursor: pointer;
        list-style: none;
        transition: all 0.5s ease;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    summary::-webkit-details-marker {
        display: none;
    }

    details[open] summary {
        background: linear-gradient(90deg, #0B8FE1 0%, #6807A1 100%);
        color: #fff;
    }

    /* Content styling with height calculations to prevent jumping */
    details .content {
        padding: 24px;
        background: #fff;
        border-radius: 8px;
        margin-top: 16px;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.5s ease;
    }

    details[open] .content {
        opacity: 1;
        height: auto;
        overflow: visible;
    }

    .right .content-categories ul {
        list-style: none;
        padding: 0;
        margin-bottom: 24px;
        gap: 5px;
    }

    .content-categories li {
        font-size: 20px;
        padding: 12px 0;
        padding-left: 24px;
        position: relative;
    }

    .content-categories li:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: linear-gradient(90deg, #0B8FE1 0%, #6807A1 100%);
    }

    details:not([open]):hover summary {
        background: #f5f5f5;
        transform: translateY(-2px);
    }    

    .footer-section{
        padding: 60px 0;
    }
    
}

@media (min-width: 768px) and (max-width: 1000px){
    .introduction-top, .introduction-bottom {
        flex-direction: column;
        align-items: center;
        padding-top: 6rem;
    }
    .introduction-top{
        gap: 2rem;
    }
    .introduction-bottom {
        flex-direction: column-reverse;
        padding-top: 2rem;
    }

    .introduction-top .content,
    .introduction-bottom .content,
    .introduction-bottom .content.wrapper .content {
        padding-left: 2rem;
    }

    .introduction-bottom .image-container{
        display: flex;
        justify-content: center;
        position: relative;
        padding-left: 20px;
        width: 450px;
    }
    
}

/* Tablet only */

@media (min-width: 768px) and (max-width: 1023px) {
    /* Navigation */

    .logo{
        transform: scale(0.85);
        transform-origin: top left;  
    }

    nav ul a {
        font-size: 17px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-decoration: none;
        text-align: right;
        z-index: 1;
        color: #FFF;
    }

    .btn.gradient {
        border: 1.7px solid;
        border-color: var(--blue-color);
        color: var(--purple-color);
        border-radius: 20.4px;
        padding: 8.5px 27.2px;
        font-size: 13.6;
    }

    /* Hero section */

    .hero-section .left h1{
       font-size: 55.25px;
    }

    .hero-section .left p {
        font-size: 25px;
    }

    .hero-section .left{
        transform: scale(0.85);
        transform-origin: top left;
    }

    .hero-section .right .btn.gradient-background {
        font-size: 18px;
        border-radius: 27.2px;
        padding: 10.2px 0;
        width: 170px;
        border: 1.7px solid;
        border-color: #fff;
    }

    /* Industry section */

    .desktop{
        max-height: 550px;
    }

    /* Introduction section */
    
    

    .introduction-bottom .btn.gradient-background {
        font-size: 18px;
        padding: 11.05px 27.2px;
        border-radius: 27.2px;
        background: linear-gradient(90deg, var(--blue-color) 0%, var(--purple-color) 100%);
        color: #fff;
        text-decoration: none;
        width: 190px;
        border: none;
    }



    /* members section */

    .members-section{
        padding-left: 0;
        padding-right: 23px;
    }

    .members-section img {
        transform: scale(0.85);
        transform-origin: bottom left;
    }

    .members-section .left{
        width: 60%;
    }
    
    .members-section .right p {
        font-size: 14.45px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        color: #FFF;
    }

    .members-section .right h2 {
        font-size: 29.75px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        color: #FFF;
    }

    .members-section .btn {
        position: relative;
        margin: 25.5px 0;
        padding: 11.9px 25.5px;
        background: #fff;
        border-radius: 27.2px;
        border: none;
        width: 164.9px;
        
    }

    .members-section .btn span {
        font-size: 18px;
    }

    /* Industry section */
    .wrapper .industry-section{
        
        max-height: 650px;
    }

    .industry-section .content .image-container img {
        width: 410px;
    }

    /* Target group section */

    .target-group-section .image-container {
        transform: scale(0.85);
        transform-origin: bottom right;
    }

    .target-group-section .content h2 {
        font-size: 29.75px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #FFF;
    }

    .target-group-section .content p {
        font-size: 20px;
        margin-bottom: 1.7rem;
        padding-top: 2.55rem;
        color: #FFF;
    }

    .target-group-section .content .btn {
        margin-top: 13%;
        position: relative;
        margin: 40.8px 0;
        background: #fff;
        border-radius: 27.2px;
        border: none;
        padding: 10.2px 27.2px;
        font-size: 20px;
        display: flex;
        text-decoration: none;
        justify-content: center;
        align-items: center;
    }

    /* Benefits section */

    .benefits-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 68px 0;
        gap: 68px;
    }

    .benefits-section h2 {
        font-size: 34px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        color: #042825;
    }

    .benefits-section .content h3 {
        font-size: 22.1px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        color: var(--black-color);
    }

    .benefits-section .content p {
        font-size: 15.3px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        margin-top: 10.2px;
        margin-bottom: 48.45px;
        color: var(--black-color);
    }

    
    
    /* Contact section */

    .contact-section .content{
        gap: 2%;
    }

    .contact-section .content .left .bottom-left .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 13.6px;
        max-width: 320px;
        background: #fff;
    }
    

    .contact-section .content{
        transform: scale(0.90);
        transform-origin: top;
    }

    .contact-section .content .right .submit {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-section .content .right .btn.gradient-background {
        padding: 10.2px 17px;
        max-width: 361.25px;
        gap: 6.8px;
        width: 100%;
        text-align: center;
        font-family: Figtree;
        font-size: 13.6px;
        font-style: normal;
        font-weight: 500;
        line-height: 20.4px;
        letter-spacing: -0.0544px;
        color: var(--Content-Reversed, #FFF);
        border-radius: 27.2px;
    }

    /* Footer */

    .footer-container .footer-section .footer-upper .contact h4 {
        font-size: 15.3px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin: 0;
        background: var(--Primary, linear-gradient(114deg, #0B8FE1 0%, #6807A1 100%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-container .footer-section .footer-upper .contact p {
        font-size: 13.6px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding-top: 5.1px;
        margin: 0;
        color: #1B1B1B;
    }

    .footer-container .footer-section .footer-upper ul {
        display: flex;
        flex-direction: row;
        list-style: none;
        font-size: 15.3px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        gap: 54.4px;
        color: #1B1B1B;
    }

    .footer-container .footer-section .footer-upper .btn.gradient-background {
        display: flex;
        justify-content: center;
        padding: 10.2px 17px;
        gap: 8.5px;
        width: 167.45px;
        text-align: center;
        font-size: 13.6px;
        font-style: normal;
        font-weight: 500;
        line-height: 20.4px;
        color: #fff;
        border-radius: 27.2px;
    }

    .footer-container .footer-section .footer-bottom img {
        transform: scale(0.85);
        transform-origin: top left;
    }

    .footer-container .footer-section .footer-bottom .content-section p {
        font-size: 11.9px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: #1B1B1B;
    }

    .footer-container .footer-section .footer-upper {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 96.9px;
        padding: 0;
    }
    
}

@media (min-width: 1024px) and (max-width: 1439px){
    .desktop{
        max-height: 600px;
    }
}

@media (max-width: 1540px){
    .introduction-top .content h2,
    .introduction-bottom .content h2 {
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 24px;
        color: var(--black-color);
    }

    .introduction-top .content p,
    .introduction-bottom .content p {
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 0px;
        max-width: 588px;
        color: var(--black-color);
    }

    .introduction-top img,
    .introduction-bottom img {
        width: 524px;
    }

    .introduction-top .image-container .bg,
    .introduction-bottom .image-container .bg {
        width: 510px;
        height: 350px;
    }

    .introduction-bottom .image-container .bg {
        top: 30px;
        left: 30px;
    }
}

@media (min-width: 1001px) and (max-width: 1235px){
    .introduction-top .content h2,
    .introduction-bottom .content h2 {
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 24px;
        color: var(--black-color);
    }

    .introduction-top .content p,
    .introduction-bottom .content p {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-top: 0px;
        max-width: 500px;
        color: var(--black-color);
    }

    .introduction-top img,
    .introduction-bottom img {
        width: 450px;
    }

    .introduction-top .image-container .bg,
    .introduction-bottom .image-container .bg {
        width: 450px;
        height: 300px;
    }

    .introduction-bottom .image-container .bg {
        left: 25px;
        top: 20px;
    }
}