* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body{
      font-family: sans-serif;
    } 
    
    
    
    
    
    a  {
    color: #003964; 
    }
    a:hover {
    color: #2f6387 ;
    }

    p {
    margin-bottom: 10px;
    }

    nav {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      background: rgba(11, 60, 93, 0.92);
      backdrop-filter: blur(8px);
      padding: 20px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
    }

    nav h2 {
      color: white;
      font-weight: 600;
      letter-spacing: 1px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 28px;
    }

    nav a {
      text-decoration: none;
      color: white;
      font-size: 0.95rem;
      transition: 0.3s ease;
    }

    nav a:hover {
      color: var(--yellow);
    }

    header {
      height: 300px;
      background:
        linear-gradient(rgba(0,57,100,1), rgba(0,57,100,0.65));
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .hero {
      max-width: 850px;
    }

    .hero h1 {
      font-size: 4rem;
      font-
      margin-bottom: 20px;
      letter-spacing: 3px;
      font-weight: 700;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 35px;
    }

    .hero a {
      display: inline-block;
      text-decoration: none;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .hero a:hover {
      background: white;
      transform: translateY(-3px);
    }

    section {
      padding: 50px 10%;
    }

    .section-title {
      font-size: 2.8rem;
      margin-bottom: 25px;
      color: #003964; 
    }


    .section-text {
      max-width: 760px;
      margin-bottom: 30px;
      color: #335c67;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .card {
      background: white;
      padding: 35px;
      border-radius: 22px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card h3 {
      margin-bottom: 15px;
      color: var(--deep-blue);
      font-size: 1.3rem;
    }

    .highlight {
      background: linear-gradient(135deg, var(--turquoise), var(--light-green));
      color: white;
      text-align: center;
      padding: 120px 10%;
    }

    .highlight h2 {
      font-size: 3rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .highlight p {
      font-size: 1.4rem;
      font-weight: 300;
    }

    .timeline {
      border-left: 4px solid var(--turquoise);
      padding-left: 35px;
      margin-top: 50px;
    }

    .timeline-item {
      margin-bottom: 40px;
    }

    .timeline-item h4 {
      color: var(--deep-blue);
      margin-bottom: 10px;
      font-size: 1.2rem;
    }

    .example-box {
      background: var(--soft-bg);
      padding: 35px;
      border-radius: 22px;
      margin-top: 50px;
      border-left: 6px solid var(--turquoise);
    }

    .example-box p {
      margin-bottom: 15px;
      font-size: 1.05rem;
    }

  
 div.projekt{
  border-style: solid;
  border-color:  #003964;
  cursor: pointer;
  margin: 30px 0px 30px 0px;
  padding: 30px 10px 30px 15px;
  font-weight: bold;
  font-size: 20pt;
  color: #003964;
}
div.projekt:hover{
  background-color:#b5cbd6 ;
}
   


    footer {
      background: var(--deep-blue);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }

    footer p {
      opacity: 0.8;
      margin-top: 10px;
    }

  

