        :root {
          --primary-color: #4a6b3a;
          --secondary-color: #8ba888;
          --third-color: #768466;
          --accent-color: #fff0db;
          --light-color: #f8f5f0;
          --dark-color: #2c3e2a;
          --text-color: #333333;
          --text-light: #777777;
          --white: #ffffff;
          --max-width: 1400px;
          --rounded-sm: 4px;
          --rounded: 12px;
          --rounded-lg: 24px;
          --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
          --shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          --transition: all 0.3s ease;
        }

        * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
        }

        body {
          font-family: 'Poppins', sans-serif;
          line-height: 1.6;
          color: var(--text-color);
          background-color: var(--light-color);
        }

        h1,
        h2,
        h3 {
          font-family: 'Playfair Display', serif;
          font-weight: 600;
        }

        .container {
          width: 100%;
          max-width: var(--max-width);
          margin: 0 auto;
          padding: 0 24px;
        }

        header {
          background-color: rgba(255, 255, 255, 0.9);
          position: sticky;
          top: 0;
          z-index: 100;
          padding: 1rem 0;
          box-shadow: var(--shadow-sm);
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .logo-title-container {
          display: flex;
          align-items: center;
          gap: 15px;
        }

        .header-container {
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        header h1 {
          color: var(--primary-color);
          font-size: 1.8rem;
        }

        nav ul {
          display: flex;
          list-style: none;
          gap: 2rem;
        }

        nav a {
          color: var(--dark-color);
          text-decoration: none;
          font-weight: 500;
          transition: var(--transition);
          position: relative;
          padding: 0.5rem 0;
        }

        nav a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          height: 2px;
          background: var(--primary-color);
          transition: var(--transition);
        }

        nav a:hover:after {
          width: 100%;
        }

        nav a:hover {
          color: var(--primary-color);
        }

        .dsgvo {
          padding-top: 1.5vh;
        }


        .hero {
          height: 80vh;
          min-height: 90vh;
          background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
            url('src/bg.png');
          background-size: cover;
          background-position: center;
          display: flex;
          align-items: center;
        }

        .hero-content {
          max-width: 900px;
          color: var(--white);
          padding: 2rem;
          background: rgba(74, 107, 58, 0.85);
          border-radius: var(--rounded);
          margin-left: 10%;
        }

        .hero h2 {
          font-size: 2.5rem;
          margin-bottom: 1rem;
        }

        .hero p {
          margin-bottom: 2rem;
          font-size: 1.1rem;
        }

        .btn {
          display: inline-block;
          background: var(--accent-color);
          color: var(--dark-color);
          padding: 0.8rem 2rem;
          border-radius: var(--rounded-sm);
          text-decoration: none;
          font-weight: 500;
          transition: var(--transition);
        }

        .btn:hover {
          transform: translateY(-2px);
          box-shadow: var(--shadow);
        }

        .btn-primary {
          background: var(--white);
          color: var(--primary-color);
        }

        .section-title {
          text-align: center;
          margin-bottom: 5vh;
        }

        .section-title h2 {
          font-size: 2.2rem;
          color: var(--dark-color);
          margin-bottom: 1rem;
        }

        .section-title p {
          max-width: 700px;
          margin: 0 auto;
        }

        .selling-section,
        .contact-section {
          padding-top: 4rem;
          background-color: var(--accent-color);
          text-align: center;
        }

        .map {
          margin-top: 2rem;
          padding-bottom: 2rem;
        }

        .info-group {
          margin-bottom: 25px;
        }

        .info-label {
          font-weight: 600;
          color: var(--primary-color);
          display: block;
          margin-bottom: 8px;
          font-size: 1.1rem;
        }

        .info-content {
          color: var(--text-color);
          line-height: 1.6;
        }

        .opening-hours {
          list-style-type: none;
          padding: 0;
          margin: 0;
        }

        .opening-hours li {
          padding: 8px 0;
          border-bottom: 1px solid #eee;
        }

        .opening-hours li:last-child {
          border-bottom: none;
        }

        #about,
        #contact,
        #selling,
        #selling-form {
          padding-top: 2rem;
          scroll-margin-top: 80px;
        }

        .subtitle {
          font-size: 1.1rem;
          color: var(--text-light);
          padding-bottom: 3vh;
        }

        .selling-cards {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 1.5rem;
          max-width: 1200px;
          margin: 0 auto;
          padding-bottom: 3vh;
        }

        .selling-card {
          background: var(--light-color);
          border-radius: 10px;
          padding: 2rem 1.5rem;
          width: 220px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .selling-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .card-header {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 1.5rem;
        }

        .card-number {
          background: var(--primary-color);
          color: var(--light-color);
          width: 30px;
          height: 30px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: bold;
        }

        .card-icon {
          font-size: 1.8rem;
          color: var(--primary-color);
        }

        .selling-card h3 {
          font-size: 1.2rem;
          margin-bottom: 1rem;
          color: var(--text-color);
        }

        .selling-card p {
          font-size: 0.9rem;
          color: var(--text-color);
          line-height: 1.5;
        }

        .selling-form-section {
          padding-bottom: 5vh;
        }

        .selling-form {
          max-width: 600px;
          margin: 0 auto;
          padding: 30px;
          background-color: var(--secondary-color);
          border-radius: 20px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .selling-form h2 {
          color: var(--text-color);
          text-align: center;
          margin-bottom: 25px;
        }

        form {
          display: flex;
          flex-direction: column;
          gap: 20px;
        }

        .form-group {
          display: flex;
          flex-direction: column;
          gap: 8px;
        }

        label {
          font-weight: 500;
          color: var(--text-color);
        }

        input[type="text"],
        input[type="email"],
        textarea {
          padding: 12px 15px;
          border: 1px solid var(--light-color);
          border-radius: 12px;
          font-size: 16px;
          transition: all 0.3s ease;
          outline: none;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
          border-color: var(--primary-color);
          box-shadow: 0 0 0 2px rgba(3, 161, 24, 0.2);
        }

        textarea {
          resize: vertical;
          min-height: 100px;
        }

        input[type="file"] {
          padding: 10px;
          border: 1px dashed var(--accent-color);
          border-radius: 12px;
          background-color: var(--light-color);
        }

        .submit-btn {
          width: 100%;
          padding: 14px 20px;
          background-color: var(--dark-color);
          color: var(--light-color);
          font-size: 16px;
          font-weight: 500;
          border: none;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(3, 161, 24, 0.2);
          cursor: pointer;
          transition: all 0.3s ease-in-out;
          margin-top: 10px;
        }

        .submit-btn:hover {
          background-color: var(--primary-color);
          box-shadow: 0 6px 16px rgba(3, 161, 24, 0.2);
          transform: translateY(-2px);
        }

        .submit-btn:active {
          transform: scale(0.98);
        }

        footer {
          background: var(--dark-color);
          color: var(--white);
          padding: 4rem 0 2rem;
        }

        .footer-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 2rem;
          margin-bottom: 3rem;
        }

        .footer-column h3 {
          font-size: 1.2rem;
          margin-bottom: 1.5rem;
        }

        .footer-column ul {
          list-style: none;
        }

        .footer-column li {
          margin-bottom: 0.8rem;
        }

        .footer-column a {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          transition: var(--transition);
        }

        .footer-column a:hover {
          color: var(--white);
        }

        .social-links {
          display: flex;
          gap: 1rem;
          margin-top: 1rem;
        }

        .social-links a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          transition: var(--transition);
        }

        .social-links a:hover {
          background: var(--primary-color);
        }

        .footer-bottom {
          text-align: center;
          padding-top: 2rem;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom a {
          text-decoration: none;
          color: var(--light-color);
        }

        @media (max-width: 576px) {
          .hero h2 {
            font-size: 2rem;
          }

          .section-title h2 {
            font-size: 1.8rem;
          }
        }

        @media (max-width: 768px) {

          #about,
          #contact,
          #selling,
          #selling-form {
            scroll-margin-top: 60px;
          }

          .selling-cards {
            flex-direction: column;
            align-items: center;
            flex: 1 1 300px;
          }

          .selling-card {
            width: 80%;
          }

          .header-container {
            flex-direction: column;
            gap: 1rem;
          }

          nav ul {
            gap: 1.5rem;
          }

          .hero {
            height: auto;
            min-height: 500px;
          }

          .hero-content {
            margin: 2rem auto;
            max-width: 90%;
          }
        }

        @media (max-width: 912px) {
          .hero {
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
              url('src/mobile-bg-kleines-klee.png');
            background-size: cover;
            background-position: center;
          }
        }

        @media (max-width: 992px) {
          .hero-content {
            margin-left: 5%;
            margin-right: 5%;
          }
        }