.navbar a {
  cursor: pointer;
}

/* === Global Styles === */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #050606;
  color: white;
  padding-bottom: 80px; 
  display: flex;
  flex-direction: column;
}

/* === Layout-Struktur === */
.main {
  flex: 1;
  padding-bottom: 120px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px; /* Abstand zwischen Logo und Text */
  text-decoration: none;
}

.firm-name {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(90deg, #1E90FF, #8A2BE2, #FF6A00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6.5rem 0 8rem !important;
}

.text-block {
  padding-left: 5.5rem; 
}

/* === Header & Navigation === */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #050606;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #1E90FF;
}

header img,
.navbar img {
  height: 200px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #FF6A00);
}

nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  padding-bottom: 20px;
}

nav a {
  color: #FF6A00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  font-size: 1.4em;
}

nav a:hover {
  color: #8A2BE2;
}

/* === Hero Section === */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1E90FF, #8A2BE2);
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FF6A00;
}

.hero p {
  font-size: 1.4em;
  color: white;
}

/* === Innovation Page === */
.innovation-page h1 {
  text-align: center;
  color: #FF6A00;
  font-size: 2em;
  margin-top: 30px;
}

.innovation-page h2,
.innovation-page h3,
.innovation-page p {
  text-align: center;
  margin: 0 0 5px;
}

.platform-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.innovation-section {
  margin: 20px 0 50px;
}

.innovation-section h1 {
  margin-bottom: 15px;
}

.innovation-section h2 {
  margin: 40px 0 10px;
}

.platform-section {
  margin-bottom: 60px;
}

/* === Kontaktboxen === */
.kontakt-box {
  max-width: 600px;
  margin: 40px 0;
  padding: 30px;
  background-color: #111;
  border-radius: 10px;
  box-shadow: 0 0 20px #1E90FF;
  text-align: left;
}

.kontakt-box p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #ccc;
}

.kontakt-box a {
  color: #8A2BE2;
  text-decoration: none;
  font-weight: bold;
}

/* === Buttons === */
.drillalyze-button,
.clinalyze-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
  color: white !important;
}

.drillalyze-button {
  background-color: #0078D4;
}

.drillalyze-button:hover {
  background-color: #005A9E;
}

.clinalyze-button {
  background-color: #8A2BE2;
}

.clinalyze-button:hover {
  background-color: #6A1BBE;
}

/* === Slogans === */
.clinalyze-slogan,
.drillalyze-slogan {
  text-align: left;
  font-size: 1.8em;
  font-weight: bold;
  margin: 30px 0 0;
}

.clinalyze-slogan {
  color: #B57FFF;
  text-shadow: 0 0 5px #8A2BE2;
  margin-top: 80px;
}

.drillalyze-slogan {
  color: #0078D4;
  margin-top: 80px;
}

.clinalyze-slogan::after,
.drillalyze-slogan::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
}

.clinalyze-slogan::after {
  background-color: #8A2BE2;
}

.drillalyze-slogan::after {
  background-color: #0078D4;
}

/* === Plattformen Page === */
.plattformen-page h1 {
  text-align: left;
  font-size: 2em;
}

h1 {
  color: #FF6A00;
}

/* === Footer === */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #050606;
  color: #8A2BE2;
  padding: 20px 30px; /* Weniger vertikaler Abstand */
  text-align: center;
  border-top: 2px solid #FF6A00;
  z-index: 1000;
  box-sizing: border-box;
  font-size: 1.3em; /* Größere Schrift */
}

footer a {
  color: #8A2BE2;
  text-decoration: none;
  font-weight: bold;
  margin: 0 8px;
}

footer p {
  margin: 0; /* Entfernt unnötigen Abstand */
}

.kontakt-page {
  margin-left: 0;
  padding-left: 10.5rem; 
  padding-left: 34.7rem; 
}

.centered {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  padding: 20px;
}

.acknowledgment {
  background-color: #f4f6f8; /* sanftes Grau-Blau */
  padding: 30px;
  margin: 40px auto;
  max-width: 800px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.acknowledgment h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #005b8f; /* dezentes Blau passend zur Seriosität */
}

.acknowledgment p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.main {
  flex: 1;
  padding-bottom: 120px;
}