/* General styles */
 html {
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #ffffff;
      color: #1a1a1a;
    }
    .top-header {
      background-color: #ffffff;
      color: #000;
      padding: 5px 20px;
      display: flex;
      justify-content: space-between;
      font-size: 0.9em;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    .top-header a {
      color: #000;
      text-decoration: none;
    }
    header {
      background-color: #111;
      color: #f0f0f0;
      padding: 10px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 999;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
      animation: fadeInDown 1s ease;
    }
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .logo {
      font-size: 2em;
      font-weight: bold;
      color: #f0f0f0;
      margin: 10px 0;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }
    nav {
      display: flex;
      gap: 30px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    nav a {
      color: #f0f0f0;
      text-decoration: none;
      font-weight: bold;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      background: #f0f0f0;
      left: 0;
      bottom: -5px;
      transition: width 0.3s;
    }
    nav a:hover::after {
      width: 100%;
    }
    .slider {
      width: 100%;
      height: 400px;
      background-image: url('1.png');
      background-size: cover;
      background-position: center;
      animation: slide 10s infinite alternate;
    }
    @keyframes slide {
      0% { background-image: url('1.png'); }
      50% { background-image: url('1.png'); }
      100% { background-image: url('1.png'); }
    }
    section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
      animation: fadeIn 1s ease;
    }
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .about {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 20px;
    }
    .about img {
      width: 300px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    .about article {
      flex: 1;
    }
    .contact-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 500px;
      background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      flex: 1;
    }
    .contact-info {
      flex: 1;
      min-width: 250px;
	  background-color: #ffffff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .contact-info p {
      margin: 0 0 10px;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 1em;
      background-color: #ffffff;
      color: #000000;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      box-shadow: 0 0 5px #888;
    }
    .contact-form button {
      padding: 10px;
      font-size: 1em;
      background-color: #444;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    .contact-form button:hover {
      background-color: #666;
    }
    footer {
      text-align: center;
      padding: 20px;
      background-color: #111;
      color: #f0f0f0;
      font-size: 0.9em;
      opacity: 0.8;
    }