  h1 {
    font-size: 1.8rem;
  }
  /* Hero Section */

  .hero-section {
  background-color: white;
  min-width: 100%;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 98%;
  margin-inline: auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  text-align: center;
}
.hero-image {
  min-width: 300px;
  max-width: 700px;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
@media screen and (min-width: 1024px) {
.hero-text{
  text-align: left;
}
 .hero-actions {
  flex-direction: row;
 }
}
/* #MARK: content */
.main-wrapper {
  max-width: 98%;
  width: 1600px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
  color: #333;
}
.breadcrumbs {
  display: block;
  justify-content: flex-start;
  gap: 1rem;
  margin-left: 2rem;
  font-size: 0.8rem;
  min-width: 100%;
  margin-top: 20px;
  max-height: 1.5rem;
}
.breadcrumbs a:not(:first-child)::before,
.breadcrumbs p:not(:first-child)::before {
  content: " >> ";
}
.breadcrumbs p {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 400;
  display: inline;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 60px 0;
  align-items: center;

}
.info-grid-card {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  /* Removed the comma and fixed the distribution */
  grid-template-rows: 150px 1fr; 
  border-radius: 5%;
  border: 2px solid var(--plasmablue);
  background-color: var(--lightgrey);
  padding: 1rem;
}
.info-grid-card-image{
  grid-row: 1 / 2;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
   border-radius: 20%;
   justify-self: center;
  }
.info-grid-card-text {
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns content to the top */
  align-items: center;        /* Keeps text centered horizontally */
  text-align: center;         /* Centers the lines of text */
  margin-top: 1rem;           /* Spacing between image and text */
}
.info-grid a{
  text-decoration: none;
}
.mitarbeiter{
  border-radius: 5%;
  display: block; 
  margin-inline:auto;

}
/* reused blocks */
/* Video Card Styling */
.video-card {
    background: var(--plasmablue);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 500px;
    margin-inline: auto;
}

.video-card h2, .video-card h3 {
    color: white;
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}
/* feature cards */
.feature-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid var(--plasmablue);
}
.feature-card img {
  display: block;       /* Removes extra bottom space and treats it as a block */
  margin-left: auto;    /* Pushes from the left */
  margin-right: auto;   /* Pushes from the right, centering it */
  max-width: 100%;      /* Ensures the image never overflows the card */
  height: auto;         /* Maintains aspect ratio */
  margin-bottom: 15px;  /* Optional: adds space between image and text */
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card img {
  max-width: 100%;
  height: 200;
  max-height: 200px;
  border-radius: 5%;
  margin-bottom: 15px;
  object-fit: cover;
}
/* Comparison Table */
.table-container {
  margin: 2rem auto;
  max-width: 100%;
  overflow-x: auto;
  background-color: #f8f9fa;
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 600px;
}

.pt-table th {
  color: var(--plasmablue);
  padding: 1rem;
  border-bottom: 3px solid var(--plasmablue);
  font-weight: 700;
}

.pt-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--lightgrey);
}

.pt-table {
  min-width: auto;
  table-layout: auto;
}
.pt-table th,
.pt-table td {
  padding: 0.5rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
/* comparison table */
  .comparison-section { background: #f4f7f9; padding: 2rem; border-radius: 12px; margin: 3rem 0; }
        .method-table { width: 100%; border-collapse: collapse; background: white; }
        .method-table th, .method-table td { padding: 1rem; border: 1px solid #ddd; text-align: left; }
        .method-table th { background: var(--plasmablue); color: white; }
        .highlight-box { border: 2px dashed var(--plasmablue); padding: 1.5rem; background: #eef6ff; border-radius: 8px; }

        /* Success Checklist */
.success-checklist {
  max-width: 98%;
  margin-inline: auto;
  background-color: #ffffff;
  border: 2px solid var(--plasmablue);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.checklist-items li {
  padding: 0.8rem 0 0.8rem 35px;
  position: relative;
  border-bottom: 1px solid #f9f9f9;
    list-style-type: none;
}

.checklist-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  background: #eaffed;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}
.success-checklist {
  padding: 1rem;
  width: 100%;
}
.checklist-items li {
  overflow-wrap: break-word;
}
.objective-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--plasmablue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.objective-card:hover {
    transform: translateX(10px);
}
/* Base styles for mobile/tablets */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.product-grid-special{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}
/* Limit to 3 columns on desktop (screens wider than 1024px) */
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-grid-special{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
}

.product-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}
.product-card img{
  margin:0 auto 1rem auto;
}

.highlight-red { color: #e31e24; font-weight: bold; }
.highlight-blue { color: #0054a6; font-weight: bold; }
/* #MARK:FAQ styling   */
.faqdropdown {
  display: flex;
  position: sticky;
  margin-left: 0.5rem;
  width: fit-content;
  padding: 1rem;
  border-radius: 1rem;
  z-index: 1000;
}
.faqdropbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  border: thin solid var(--plasmablue);
  border-radius: 1rem;
}

.sidefaqbutton {
  border: none;
}

.faqdropdown-content {
  display: none;
  position: absolute;
  left: -30%;
  background-color: #fff;
  border: 3px solid var(--plasmablue);
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.faqdropdown:hover .faqdropdown-content {
  display: flex;
  flex-direction: column;
  margin-left: 3rem;
  min-width: 60ch;
  line-height: 2rem;
  padding-left: 2rem;
}
.faq-display-grid {
  background-color: var(--faq);
  padding: 1rem;
}
  .faq-item-card {
    padding: 40px;
    margin-bottom: 30px;
    background: white;
    border-radius: 1rem;
    border-bottom: 1px solid #eee; /* Subtle separation */
}

.faq-item-card h2, .faq-item-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--plasmablue);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .faqdropdown:hover .faqdropdown-content{
    left: -30%;
    min-width: 40ch;
    max-width: 90vw;
   
  }
}
.faqdropdown-content a {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  font-weight: 600;
}
.underline {
  border-bottom: solid 2px var(--plasmablue);
}
.return-top {
  display: flex;
  flex-direction: column-reverse;
  z-index: 25;
  padding: 0.5rem;
  position: fixed;
  top: 70%;
  background-color: #f5f5f5;
  border: solid 1px var(--plasmablue);
  border-radius: 0 1rem 1rem 0;
}
/* #MARK: utilities */
.bb {
  border: 1px solid blue;
}
.br {
  border: 1px solid red;
}
.border-right{
  border-right: 1px solid black;
  padding-right: 1rem;
}
.border-left{
  border-left: 1px solid black;
  padding-right: 1rem;
}
.plasmablue {
  color: var(--plasmablue);
}
.space2 {
  margin-bottom: 2rem;
}
.space1 {
  margin-bottom: 1rem;
}
.text80 { 
  display: block;
  width: fit-content;
  max-width: 80ch;
  margin-inline: auto;
  text-align: left; 
/* Ensures text stays left-aligned inside the centered box */
}
.text80w {
 display: block; /* Ensure it's a block */
  width: fit-content;
  max-width: 80ch;
  margin-inline: auto;
  text-align: left;
}
.textwide { 
  display: gridinline-block; /* Or display: table; */
  max-width: 1600px;
  width: fit-content;
  margin-inline: auto;
  text-align: left; 
}
.button {
  display: inline-flex; /* Better for centering content */
  align-items: center;
  justify-content: center;
  padding: 0.8em 3rem;
  margin: 1rem;
  background-color: var(--plasmablue);
  color: var(--white) !important;
  border-radius: 20px;
  border: 3px solid var(--plasmablue);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.9s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.button:hover {
  background-color: var(--faq);
  transform: translateY(-2px);
  box-shadow: none;
  color: var(--plasmablue) !important;
}
.centerit {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*######### links ############# */
.internlinks {
  color: var(--plasmablue);
}
.internlinks::before {
  content: url("../assets/icons/link.gif");
  margin-right: 5px;
  pointer-events: none; /* Verhindert, dass das Pseudoelement Hover-Ereignisse blockiert */
}
.internlinks:hover {
  text-decoration: underline;
}
