/* Base Styles */
body {
  background-color: #f4f4f8;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Disclaimer Container */
.disclaimer-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem 2.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #333;
  animation: fadeIn 0.5s ease-in-out;
}

/* Heading */
.disclaimer-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #222;
  text-align: center;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

/* Paragraph Text */
.disclaimer-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Layout */
@media (max-width: 768px) {
  .disclaimer-section {
    margin: 2rem 1rem;
    padding: 1.5rem;
    border-left-width: 4px;
  }

  .disclaimer-section h2 {
    font-size: 1.8rem;
  }

  .disclaimer-section p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Even tighter for very small screens */
@media (max-width: 480px) {
  .disclaimer-section {
    padding: 1rem;
    border-left-width: 3px;
  }

  .disclaimer-section h2 {
    font-size: 1.6rem;
  }

  .disclaimer-section p {
    font-size: 0.95rem;
  }
}

/* Optional: Back to Home Link Styling */
.disclaimer-section a {
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  color: #333;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.disclaimer-section a:hover {
  color: #000;
}
