.about-section {
  background: white;
  color: #eee;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.about-container {
  max-width: 1100px;
  margin: auto;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.about-block:nth-child(even) {
  flex-direction: row-reverse;
}

.about-block img {
  width: 50%;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  width: 50%;
}

.about-text h2 {
  color: #ff6600;
  margin-bottom: 10px;
}

.about-text p {
  line-height: 1.7;
  color: #ccc;
}

@media (max-width: 768px) {
  .about-block {
    flex-direction: column;
  }

  .about-block img,
  .about-text {
    width: 100%;
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
  color: rgb(255, 102, 0);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

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

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #111;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.highlight {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.highlight img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.highlight h2 {
  margin: 15px 0 10px;
  font-size: 22px;
}

.highlight p {
  color: #555;
  font-size: 15px;
}

.highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer {
  background: #111;
  color: #ccc;
  padding-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 30px 30px;
}

.footer-section h2,
.footer-section h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.footer-section p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

.footer-link:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
  transition: 0.3s;
}

.social-icons img:hover {
  filter: none;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #0a0a0a;
  font-size: 13px;
  border-top: 1px solid #222;
}

@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
