


  /* kontakt-page */
  main {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #310E10;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  .kontakt-wrapper {
    background: #E4E2DD;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
  }
  
  .kontakt-wrapper h1 {
    margin-top: 0;
    font-size: 28px;
    color: #333;
  }
  
  .kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .kontakt-form label {
    font-weight: bold;
    color: #444;
  }
  
  .kontakt-form input,
  .kontakt-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .kontakt-form button {
    background-color: #310e10;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .kontakt-form button:hover {
    background-color: #24090e;
  }


  .kontakt-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #333;
  }
  
  .kontakt-info h2 {
    margin-bottom: 10px;
    color: #310e10;
  }
  
  .kontakt-info h3 {
    margin-top: 20px;
    font-size: 18px;
    color: #555;
  }
  
  .kontakt-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .kontakt-info ul li {
    padding: 3px 0;
  }
  
  .social-links {
    margin-top: 30px;
  }
  
  .social-links h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #555;
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.2s ease;
  }
  
  .social-links a:hover {
    transform: scale(1.1);
  }
  
  .social-links img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
  } 
  
  