* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104vh;
    position: relative;
    overflow-x: hidden;
    padding: 20px;
    margin: 30px;
    box-sizing: border-box;
    margin-bottom: 100px;
  }
  
  .content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .image {
    width: 100%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    margin-top: 0;
    border-radius: 20px;
  }

  .container.slider {
    background: url('../images/home/slider.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }

  .slider nav a {
    text-shadow: 0 0 3px black;
  }
/*   
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin-top: -220px;
    margin-bottom: 140px;
    margin-right: 200px;
    box-sizing: border-box;
    position: relative;
  }
  
  
  
  .logo img {
    height: 104px;
    width: 104px;
    margin-left: 90px;
    margin-top:45px;
  }
  
  .nav {
    display: flex;
    gap: 30px;
    margin-top: 1px;
  }
  
  .nav a {
    color: #f8eeee;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  
  .nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #fff;
    transition: width 0.2s ease, right 0.2s ease;
  }
  
  .nav a:hover::after {
    width: 100%;
    right: 0;
  }
   */
  .text-container {
    position: relative;
    z-index: 1;
    color: rgb(252, 252, 252);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding-bottom: 45px;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  
  .button {
    background-color: #f7f7f7;
    margin-top: 10px;
    color: #1a1313;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
  }
  
  .button:hover {
    background-color: #a6adb4;
  }
  
  .info-section, .info-section-reverse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 100px auto;
    padding: 20px;
  }
  
  .info-section .info-text, .info-section-reverse .info-text {
    width: 40%;
  }
  
  .info-section .info-image, .info-section-reverse .info-image {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .info-section .info-image img, .info-section-reverse .info-image img {
    max-width: 100%;
    height: auto;
    width: 350px;
    border-radius: 10px;
  }
  
  .info-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .info-text h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #a6adb4;
  }
  
  .info-section-reverse {
    flex-direction: row;
  }
  
  .info-text {
    margin-left: 120px; 
    margin-right: 10px;
  }
  
  .search-button {
    background-color: black;
    color: white;
    width: 150px; 
    height: 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .search-button:hover {
    background-color: #333;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 30px auto; 
    width: calc(80% - 60px);
    align-items: center;
    max-width: 1200px; 
    flex-wrap: wrap; 
  }
  
  
  .footer-left {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; 
  }
  
  .footer-left h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  
  .social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .social-icons a {
    display: flex;
  }
  
  .social-icons img {
    width: 20px;
    height: 20px;
  }
  
  .footer-left .contact {
    color: gray;
    font-size: 0.9rem;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .footer-nav a {
    color: #1a1313;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    position: relative;
  }
  
  .footer-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #1a1313;
    transition: width 0.2s ease, right 0.2s ease;
  }
  
  .footer-nav a:hover::after {
    width: 100%;
    right: 0;
  }
  
  .admin-link {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
  }
  
  .admin-link:hover {
    background-color: #333;
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 10px;
    }
  
    .header {
      flex-direction: column;
      align-items: flex-start;
      padding: 10px;
    }
  
    .nav {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      width: 100%;
    }
  
    .text-container {
      margin-top: 150px;
    }
  
    h1 {
      font-size: 2rem;
    }
  
  
    .button {
      padding: 10px 20px;
      font-size: 1rem;
    }
  
    .info-section, .info-section-reverse {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .info-text, .info-image {
      width: 100%;
    }
  
    .info-image {
      margin-top: 20px;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-right {
      align-items: flex-start;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1200px) {
    .text-container {
      margin-top: 180px;
    }
  
    h1 {
      font-size: 2.5rem;
    }
  
  
    .button {
      padding: 12px 25px;
      font-size: 1.1rem;
    }
  }
  