/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d8 100%);
} */

.main-content {
  margin-top: 80px;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-selector {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: #f8f9fa;
  border: 2px solid #ff6b35;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #ff6b35;
}

.tab-btn.active {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.page-content {
  /* display: none; */
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in;
}

.page-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  color: #18171d;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2.5rem;
  position: relative;
}

.page-content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  border-radius: 2px;
}

h2 {
  color: #18171d;
  margin: 30px 0 15px 0;
  font-size: 1.8rem;
  border-left: 4px solid #ff6b35;
  padding-left: 20px;
}

h3 {
  color: #18171d;
  margin: 20px 0 10px 0;
  font-size: 1.3rem;
}

p {
  /* margin-bottom: 15px; */
  /* text-align: justify; */
  line-height: 1.8;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d8 100%);
  border: 2px solid #ff6b35;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  position: relative;
}

.highlight-box::before {
  content: "⚠️";
  position: absolute;
  top: -10px;
  left: 20px;
  background: white;
  padding: 0 10px;
  font-size: 1.2rem;
}

.contact-info {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
}

.contact-info h3 {
  color: white;
  margin-bottom: 15px;
}

.footer-placement {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
}

.footer-placement h2 {
  border: none;
  padding: 0;
  color: #ff6b35;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-links a {
  color: #ff6b35;
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid #ff6b35;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-2px);
}

#section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

#section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.decorative-elements {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.om-symbol {
  position: absolute;
  font-size: 100px;
  color: rgba(255, 107, 53, 0.05);
  transform: rotate(15deg);
}

.om-1 {
  top: 20%;
  right: 10%;
}
.om-2 {
  bottom: 30%;
  left: 5%;
  transform: rotate(-15deg);
}
.om-3 {
  top: 60%;
  right: 20%;
}

@media (max-width: 768px) {
  .page-tabs {
    justify-content: center;
  }

  .tab-btn {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }

  .page-content {
    padding: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 1.3rem;
  }

  .page-tabs {
    margin-bottom: 12px;
  }

  .page-selector {
    padding: 16px;
  }

  .main-content {
    margin-top: 100px;
    padding: 0px;
  }

  .highlight-box {
    padding: 12px;
  }

  p {
    font-size: 14px;
  }

  h3 {
    font-size: 1.1rem;
  }

  h2 {
    font-size: 1.2rem;
    padding-left: 10px;
  }
}
