
    :root {
      --page-bg-color: #1a1a1a;
      --page-text-color: #f0f0f0;
      --page-accent-color: #d4af37; /* Gold */
      --page-dark-text-color: #333;
      --page-light-bg-color: #2a2a2a;
      --page-border-color: #444;
    }

    .page-ku-damm-berlin-hotel {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--page-text-color);
      background-color: var(--page-bg-color);
      line-height: 1.6;
      overflow-x: hidden;
    }

    .page-ku-damm-berlin-hotel__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-ku-damm-berlin-hotel__hero-section {
      position: relative;
      width: 100%;
      height: 600px; /* Increased height for better visual impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Minimal padding-top as body padding is assumed */
      box-sizing: border-box;
    }

    .page-ku-damm-berlin-hotel__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.5); /* Darken image for text readability */
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-ku-damm-berlin-hotel__hero-content {
      position: relative;
      z-index: 2;
      color: var(--page-text-color);
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4); /* Slightly darker overlay for text */
      border-radius: 10px;
    }

    .page-ku-damm-berlin-hotel__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--page-accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-ku-damm-berlin-hotel__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-ku-damm-berlin-hotel__button-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow wrapping on smaller screens */
    }

    .page-ku-damm-berlin-hotel__primary-button,
    .page-ku-damm-berlin-hotel__secondary-button {
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease;
      text-decoration: none; /* Ensure no underline for button-like elements */
      display: inline-block; /* For button-like elements */
      text-align: center;
    }

    .page-ku-damm-berlin-hotel__primary-button {
      background-color: var(--page-accent-color);
      color: var(--page-dark-text-color);
    }

    .page-ku-damm-berlin-hotel__primary-button:hover {
      background-color: #e0c26b; /* Slightly lighter gold */
    }

    .page-ku-damm-berlin-hotel__secondary-button {
      background-color: transparent;
      color: var(--page-accent-color);
      border: 2px solid var(--page-accent-color);
    }

    .page-ku-damm-berlin-hotel__secondary-button:hover {
      background-color: var(--page-accent-color);
      color: var(--page-dark-text-color);
    }

    .page-ku-damm-berlin-hotel__about-section,
    .page-ku-damm-berlin-hotel__gallery-section,
    .page-ku-damm-berlin-hotel__location-section,
    .page-ku-damm-berlin-hotel__cta-section,
    .page-ku-damm-berlin-hotel__faq-section {
      padding: 60px 0;
      background-color: var(--page-bg-color);
    }

    .page-ku-damm-berlin-hotel__section-title {
      font-size: 2.8em;
      color: var(--page-accent-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ku-damm-berlin-hotel__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-accent-color);
    }

    .page-ku-damm-berlin-hotel__text-content {
      font-size: 1.1em;
      text-align: center;
      max-width: 900px;
      margin: 0 auto 40px auto;
      color: var(--page-text-color);
    }

    .page-ku-damm-berlin-hotel__highlight {
      color: var(--page-accent-color);
      font-weight: bold;
    }

    .page-ku-damm-berlin-hotel__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-ku-damm-berlin-hotel__feature-item {
      background-color: var(--page-light-bg-color);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-ku-damm-berlin-hotel__feature-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-ku-damm-berlin-hotel__feature-icon {
      width: 100%;
      max-width: 250px; /* Ensure images are not too small */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-ku-damm-berlin-hotel__feature-title {
      font-size: 1.8em;
      color: var(--page-accent-color);
      margin-bottom: 15px;
    }

    .page-ku-damm-berlin-hotel__feature-description {
      font-size: 1em;
      color: var(--page-text-color);
    }

    .page-ku-damm-berlin-hotel__image-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-ku-damm-berlin-hotel__gallery-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-ku-damm-berlin-hotel__gallery-image:hover {
      transform: scale(1.03);
    }

    .page-ku-damm-berlin-hotel__location-map {
      width: 100%;
      height: 450px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      margin-top: 40px;
      max-width: 100%; /* Ensure responsiveness */
      object-fit: cover;
    }

    .page-ku-damm-berlin-hotel__cta-section {
      background-color: var(--page-light-bg-color);
      text-align: center;
      padding: 80px 0;
    }

    .page-ku-damm-berlin-hotel__cta-content {
      max-width: 800px;
    }

    .page-ku-damm-berlin-hotel__cta-title {
      font-size: 2.5em;
      color: var(--page-accent-color);
      margin-bottom: 20px;
    }

    .page-ku-damm-berlin-hotel__cta-description {
      font-size: 1.2em;
      margin-bottom: 40px;
      color: var(--page-text-color);
    }

    /* FAQ Section */
    .page-ku-damm-berlin-hotel__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-ku-damm-berlin-hotel__faq-item {
      background-color: var(--page-light-bg-color);
      border: 1px solid var(--page-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-ku-damm-berlin-hotel__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: var(--page-light-bg-color);
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-ku-damm-berlin-hotel__faq-question:hover {
      background-color: #3a3a3a;
    }

    .page-ku-damm-berlin-hotel__faq-question-text {
      font-size: 1.3em;
      margin: 0;
      color: var(--page-text-color);
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-ku-damm-berlin-hotel__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-accent-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event on parent div */
    }

    .page-ku-damm-berlin-hotel__faq-item.active .page-ku-damm-berlin-hotel__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use a '-' symbol */
    }

    .page-ku-damm-berlin-hotel__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding matches question */
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: var(--page-text-color);
      background-color: #202020; /* Slightly darker background for answer */
    }

    .page-ku-damm-berlin-hotel__faq-answer p {
      margin: 0;
      padding-bottom: 20px; /* Padding for the content inside answer */
      font-size: 1em;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
    }

    .page-ku-damm-berlin-hotel__faq-item.active .page-ku-damm-berlin-hotel__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important; /* Padding when active */
      opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-ku-damm-berlin-hotel__hero-section {
        height: 450px;
      }

      .page-ku-damm-berlin-hotel__hero-title {
        font-size: 2.5em;
      }

      .page-ku-damm-berlin-hotel__hero-subtitle {
        font-size: 1.2em;
      }

      .page-ku-damm-berlin-hotel__primary-button,
      .page-ku-damm-berlin-hotel__secondary-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%; /* Full width buttons on mobile */
      }

      .page-ku-damm-berlin-hotel__button-group {
        flex-direction: column;
        gap: 15px;
      }

      .page-ku-damm-berlin-hotel__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-ku-damm-berlin-hotel__text-content {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-ku-damm-berlin-hotel__feature-item {
        padding: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-ku-damm-berlin-hotel__features-grid {
        gap: 20px;
      }

      .page-ku-damm-berlin-hotel__feature-title {
        font-size: 1.5em;
      }

      .page-ku-damm-berlin-hotel__gallery-image {
        height: 200px;
      }

      .page-ku-damm-berlin-hotel__location-map {
        height: 300px;
      }

      .page-ku-damm-berlin-hotel__cta-title {
        font-size: 2em;
      }

      .page-ku-damm-berlin-hotel__cta-description {
        font-size: 1em;
      }

      .page-ku-damm-berlin-hotel__faq-question {
        padding: 15px 20px;
      }

      .page-ku-damm-berlin-hotel__faq-question-text {
        font-size: 1.1em;
      }

      .page-ku-damm-berlin-hotel__faq-toggle {
        font-size: 1.5em;
      }

      .page-ku-damm-berlin-hotel__faq-answer {
        padding: 0 20px;
      }

      .page-ku-damm-berlin-hotel__faq-item.active .page-ku-damm-berlin-hotel__faq-answer {
        padding: 15px 20px !important;
      }

      .page-ku-damm-berlin-hotel__faq-answer p {
        padding-bottom: 15px;
      }

      /* Ensure all images are responsive */
      .page-ku-damm-berlin-hotel__hero-image,
      .page-ku-damm-berlin-hotel__feature-icon,
      .page-ku-damm-berlin-hotel__gallery-image,
      .page-ku-damm-berlin-hotel__location-map {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-ku-damm-berlin-hotel__container {
        padding: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-ku-damm-berlin-hotel__hero-title {
        font-size: 2em;
      }

      .page-ku-damm-berlin-hotel__hero-subtitle {
        font-size: 1em;
      }

      .page-ku-damm-berlin-hotel__section-title {
        font-size: 1.8em;
      }

      .page-ku-damm-berlin-hotel__cta-title {
        font-size: 1.8em;
      }
    }
  