.container {
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro {
    width: 100%;
    color: #C3B8B1;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    margin: 10px;
    margin-bottom: 20px;
}

.blocks {
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.block {
    flex: 1;
    margin-bottom: 20px;
    padding: 20px;
    color: white;
    align-items: center;
    justify-content: center;
}

.block1 {
    background-color: #FFFAF7;
    color: #313638;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.block2 {
    background-color: #CBBCB3;
}

.block3 {
    background-color: #998983;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

h3 {
    font-size: 1rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .block {
        margin: 10px 0;
        border-radius: 10px;
    }
}

     nav ul.active {
        display: none;
      }

      nav ul {
        list-style: none;
        padding: 0;
        display: block;
      }

      nav li {
        margin: 0 15px;
      }

      nav a {
        color: #C3B8B1;
        text-decoration: none;
        transition: color 0.3s;
      }

      nav a.active {
        font-weight: bold;
      }

      body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: white;
      }

      header {
        position: fixed;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        background-color: white;
        padding: 5px 20px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
      }

      header.scrolled {
        padding: 5px 20px;
      }

      .section {
        padding: 40px 20px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
      }

      .main-section {
        min-height: 100vh;
        padding: 40px 20px;
        display: flex;
        align-items: center;
      }

      .section h2 {
        color: #C3B8B1;
      }

      .info-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        align-items: flex-start;
        gap: 20px;
      }

      .info-section-order-image {}

      .info-section-order-text {}

      .info-section h2 {
        grid-row: 2;
      }

      .info-section p {
        grid-row: 3;
      }

      .info-section .expand-content {
        grid-row: 4;
        grid-column: 1 / span 2;
      }

      .expand-content {
        display: none;
        margin-top: 20px;
      }

      .small-logo {
        width: 130px;
        height: auto;
        margin-right: 100px;
        transition: all 0.4s ease-in-out;
      }

      .image-sketch {
        width: auto;
        height: 250px;
      }

      .image-signature {
        width: 1px;
        height: auto;
      }

      .image-section {
        width: 100%;
        position: relative;
        margin-left: 0%;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .image-section-right {
        width: 100%;
        position: relative;
        margin-right: 2%;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .header-content {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
        transition: all 0.4s ease-in-out;
      }

      nav {
        display: none;
      }

      .menu-toggle {
        flex-direction: column;
        cursor: pointer;
        order: 2;
        margin-right: 50px;
        position: relative;
        z-index: 2;
      }

      .menu-toggle div {
        width: 25px;
        height: 3px;
        background-color: #C3B8B1;
        margin: 5px 0;
        transition: all 0.3s;
      }

      .header-content.shrink {
        padding: 5px 10px;
      }

      .intro-image-section {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }

      .intro-image-section p {
        color: #838383;
        line-height: 1.5;
      }

      .intro-image-section .top-content {
        display: flex;
        align-items: center;
        margin-bottom: 50px;
      }

      .intro-image-section img {
        margin-right: 10px;
      }

      h2 {
        text-transform: uppercase;
        font-size: 1rem;
      }

      .button {
        display: inline-block;
        padding: 10px 20px;
        color: white;
        background-color: #C3B8B1;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s;
      }

      .button:hover {
        background-color: #A59A91;
      }

      .button:active {
        background-color: #8F8173;
      }

      .button-secondary {
        display: inline-block;
        padding: 10px 20px;
        color: #A59A91;
        background-color: #EDEAE5;
        border: none;
        border-radius: 5px;
        font-weight: normal;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s;
      }

      .button-secondary:hover {
        background-color: #D3CDC8;
      }

      .button-secondary:active {
        background-color: #BFB9B4;
      }

      .additional-content {
        display: none;
        background-color: #FCFCFC;
        padding: 20px;
        margin-top: 10px;
        border: 1px solid #C3B8B1;
        color: #838383;
        font-weight: 300;
        transition: opacity 0.4s ease-in-out;
      }

      footer {
        background-color: #A69C91;
        padding: 20px 0;
        font-size: 14px;
        color: #fff;
      }

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

      .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 1000;
      }

      .overlay-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        max-height: 80%;
        overflow: auto;
        padding: 20px;
        background-color: #fff;
        color: #000;
      }

      .legal-content {
        display: none;
        color: #838383;
      }

      .legal-content a {
        text-decoration: none;
        color: #C3B8B1;
        transition: color 0.3s;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
      }

      .overlay-content h3 {
        color: #C3B8B1;
      }

      #close-overlay {
        position: absolute;
        right: 10px;
        top: 10px;
        background: #C3B8B1;
        color: #fff;
        border: none;
        border-radius: 50%;
        cursor: pointer;
      }

      footer a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
        padding: 5px 0;
        border-bottom: 2px solid transparent;
      }

      footer a:hover {
        color: #C3B8B1;
        border-bottom: 2px solid #C3B8B1;
      }

      footer .contact-info a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
      }

      footer .contact-info a:hover {
        color: #C3B8B1;
      }

      .social-media a img {
        transition: opacity 0.3s;
      }

      .social-media a:hover img {
        opacity: 0.8;
      }

      .legal a {
        margin-right: 20px;
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
      }

      .legal a:hover {
        color: #C3B8B1;
      }

      .legal a:last-child {
        margin-right: 0;
      }

      .social-media a {
        margin-right: 20px;
        text-decoration: none;
        color: #fff;
        transition: color 0.3s;
      }

      .social-media a:hover {
        color: #C3B8B1;
      }

      .social-media a:last-child {
        margin-right: 0;
      }

      .main-image-container {
        width: 100%;
        text-align: center;
        background-color: #C3B8B1;
      }

      .main-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: auto;
      }

      @media (max-width: 768px) {
        nav {
          display: none;
          position: absolute;
          top: 100%;
          right: 0;
          background-color: #ffffff;
          z-index: 1;
          width: 200px;
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }

        .info-section-order-image {
          order: 2;
        }

        .info-section-order-text {
          order: 1;
        }

        .header-content {
          display: flex;
          align-items: center;
          justify-content: space-between;
          width: 100%;
          transition: all 0.4s ease-in-out;
        }

        .footer-content {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }

        .social-media,
        .legal {
          margin-top: 20px;
        }

        .info-section {
          grid-template-columns: 1fr;
          gap: 10px;
        }

        .main-section {
          padding: 40px 0px;
        }

        .image-sketch {
          width: auto;
          height: 150px;
        }
      }

      .accordion-header {
        cursor: pointer;
        padding: 10px;
        border: 1px solid #ddd;
        background-color: #f7f7f7;
      }

      .accordion-content {
        display: none;
        border: 1px solid #ddd;
        border-top: none;
        padding: 10px;
        background-color: #fff;
      }

      .according-space: {
        margin-bottom: 10px;
      }

      .arrow {
        float: right;
      }

      .cookie-consent-fullscreen-overlay {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        z-index: 1000;
        padding: 20px;
        box-sizing: border-box;
      }

      .cookie-consent-content {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .cookie-consent-content p {
        margin: 0 0 20px;
      }

      #mainContent {
        opacity: 0.3;
        pointer-events: none;
      }

      .copyright-footer {
        background-color: #333;
        color: #fff;
        padding: 10px 20px;
        text-align: center;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
      }

      @media screen and (min-width: 768px) {
        .image-section {
          width: auto;
          padding-bottom: 0;
          height: 440px;
          margin-left: 30px;
        }

        .image-section-right {
          width: auto;
          padding-bottom: 0;
          height: 440px;
          margin-right: 30px;
          margin-left: 0;
        }

        .menu-toggle {
          display: none;
        }

        nav {
          display: block;
          padding-left: 10px;
        }

        nav ul {
          display: flex;
          gap: 20px;
        }
      }

      .email-part1::after {
        content: "@";
      }

      .email-part3::before {
        content: ".";
      }
