/* Global */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin:0;
    background-color:#121212;
    color:#e0e0e0;
    line-height:1.6;
    text-align:center;
}

a {
    color:#ff4c4c;
    text-decoration:none;
}

.modern-header {
  background: #23232b;
  box-shadow: 0 8px 32px -8px #ff4c4c;
  border-radius: 0 0 24px 24px;
  padding: 0;
  margin-bottom: 2rem;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: #ff4c4c;
  letter-spacing: 1px;
}

.brand-desc {
  font-size: 1rem;
  color: #bdbdbd;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.header-nav a:hover {
  background: #ff4c4c;
  color: #fff;
}

@media (max-width: 700px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }
  .header-nav {
    gap: 1rem;
  }
}

main {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

#hero {
    background:linear-gradient(135deg,#1f1f1f,#2c2c2c);
    padding:4rem 2rem;
    border-radius:12px;
    margin:2rem;
    max-width:900px;
    animation:fadeIn 1s ease-in-out;
}

#hero .btn {
    display:inline-block;
    margin-top:1rem;
    padding:0.75rem 1.5rem;
    background-color:#ff4c4c;
    color:#fff;
    border-radius:12px;
    font-weight:bold;
    transition:0.3s;
}

#hero .btn:hover {
    background-color:#e03b3b;
    transform:scale(1.05);
}

.service-cards {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:1rem;
    margin-top:1rem;
}

.card {
    background-color:#1f1f1f;
    padding:1.5rem;
    border-radius:12px;
    flex:1 1 250px;
    box-shadow:0 4px 15px rgba(255,0,0,0.2);
    transition:transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(255,0,0,0.4);
}

form {
    display:flex;
    flex-direction:column;
    gap:1rem;
    max-width:500px;
    margin:2rem auto;
}

input, textarea {
    padding:0.75rem;
    border-radius:12px;
    border:none;
    outline:none;
    background-color:#2c2c3c;
    color:#e0e0e0;
    transition:0.3s;
}

input:focus, textarea:focus {
    box-shadow:0 0 8px #ff4c4c;
}

button {
    padding:0.75rem;
    border:none;
    border-radius:12px;
    background-color:#ff4c4c;
    color:#fff;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

button:hover {
    background-color:#e03b3b;
    transform:scale(1.03);
}

footer {
    text-align:center;
    padding:1rem;
    background-color:#1f1f1f;
    border-top:2px solid #ff4c4c;
    margin-top:2rem;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(20px);}
    to {opacity:1; transform:translateY(0);}
}

.hero-section {
  background: linear-gradient(135deg, #18181b 60%, #23232b 100%);
  padding: 5rem 0 4rem 0;
  box-shadow: 0 8px 32px -8px #ff4c4c;
  border-radius: 0 0 32px 32px;
  margin-bottom: 2rem;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: 1.3rem;
  color: #bdbdbd;
  margin-bottom: 2rem;
}

.hero-btn {
  font-size: 1.1rem;
  padding: 1rem 2.2rem;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(255,76,76,0.15);
}

.big-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.big-cards .card {
  min-width: 260px;
  max-width: 340px;
  padding: 2.5rem 2rem;
  font-size: 1.1rem;
  background: #23232b;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(255,76,76,0.07), 0 1.5px 8px rgba(0,0,0,0.04);
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.big-cards .icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.section-head .kicker {
  color: #ff4c4c;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}

.section-head .sub {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.section {
  margin: 4rem 0;
}

.section-alt {
  background: #18181b;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(255,76,76,0.07);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.form {
  background: #23232b;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(255,76,76,0.07);
  padding: 3rem;
  color: #e0e0e0;
  max-width: 1100px;
  width: 90vw;
  margin: 0 auto;
  display: flex;
  justify-content: center; /* Inhalt mittig */
  align-items: center;
}

.form-grid {
  width: 500px; /* Feste Breite für das innere Formular */
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1rem;
  color: #fff;
}

.form input, .form textarea {
  background: #18181b;
  color: #fff;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.form textarea {
  resize: vertical;
}

.form .full {
  grid-column: 1 / -1;
}

.form-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form .agree {
  font-size: 0.95rem;
  color: #bdbdbd;
  gap: 0.5rem;
}

.form button {
  margin-left: auto;
}

@media (max-width: 900px) {
  .big-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}