    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: #eef4f9;
      color: #2c3e50;
    }
	
    header {
      background: url('image/picture.jpg') no-repeat center center/cover;
	  height: 28vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-shadow: 2px 2px 6px #000;
    }

    header h1 {
      background-color: rgba(0, 55, 105, 0.7);
      padding: 15px 30px;
      border-radius: 12px;
      font-size: 32px;
	  color: #FFFFFF;
	  margin-bottom: 19px;
    }
	
    nav {
      background: #003366;
      padding: 10px;
      text-align: center;
    }

    nav a {
      color: #f0f8ff;
      text-decoration: none;
      font-weight: bold;
	  font-size: 20px;
	  padding: 10px 20px;
	  margin-left: -5px;
    }
	
    nav a:hover {
      background: #0E87CC;
    }
	
    section {
      max-width: 1200px;
      margin: auto;
      padding: 10px 20px;
    }
	
	h1 {
	  margin-bottom: -5px;
      color: #003366;
	  text-align: center;
	  font-size: 25px;
    }
	
    h2 {
	  margin-top: 8px;
      margin-bottom: 28px;
      color: #003366;
      font-size: 24px;
      text-align: center;
    }
	
	h3 {
      color: #003366;
    }

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

    .card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

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

    .card i {
      font-size: 32px;
      margin-bottom: 10px;
      color: #003366;
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .card p {
      font-size: 15px;
      color: #555;
    }
	
	table {
	  width:100%; 
	  border-collapse: collapse; 
	  background:white; 
	  border-radius:10px; 
	  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
	  text-align:center;
	}
	
	table thead {
	  background-color:#003366; 
	  color:white;
	}
	
    #kontakt-container {
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: space-around;
    }

    .kontakt-box {
	  flex: 1 1 200px;
      text-align: center;
    }

    .kontakt-box i {
      font-size: 28px;
      margin-bottom: 10px;
      color: #003366;
    }
	
	.kontakt-box a {
	  color: #003366;
	  text-decoration: none;
    }
	
	.kontakt-box a:hover {
	  color: #1E90FF;
	  text-decoration: none;
    }

    @media (max-width: 768px) {
      .kontakt-box {
        flex: 1 1 100%;
      }
    }

    @media (max-width: 480px) {
      header h1 {
        font-size: 22px;
        padding: 10px;
      }
      
	 nav a {
      display: block;
      margin: 10px 0;
     }
	 
    }
	
	footer {
      background: #001f33;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }