/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    flex: 1;
}

h1, h2, h3, h4 {
    margin-top: 0;
}

a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
}



/* Overlay */
.disclaimer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.disclaimer-content {
  background: #fff;
  padding: 35px 40px;
  border-radius: 12px;
  max-width: 650px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-family: 'Open Sans', sans-serif;
  animation: fadeInUp 0.4s ease;
  overflow-y: auto;
  max-height: 85vh;
}

/* Titles */
.disclaimer-content h2 {
  text-align: center;
  font-size: 24px;
  color: black;
  margin-bottom: 20px;
}

.disclaimer-content h3 {
  font-size: 18px;
  color: #0f663c;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Text */
.disclaimer-content p {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.disclaimer-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.disclaimer-content li {
  margin-bottom: 6px;
}

/* Buttons */
.disclaimer-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.disclaimer-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
}

#agreeBtn {
  background-color: #0f663c;
  color: white;
}

#declineBtn {
  background-color: #bbb;
  color: black;
}

/* Fade In */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


* Style for your hamburger menu icon (you'll need to add one in your HTML) */
.hamburger-menu {
    display: none; /* Hidden by default */
    font-size: 24px;
    cursor: pointer;
}

/* This is the media query for mobile devices */
@media (max-width: 768px) {
    
    /* Hide the full navigation links */
    .navbar .nav-links { /* Adjust this selector to match your HTML */
        display: none;
    }
    
    /* Show the hamburger menu icon */
    .hamburger-menu {
        display: block;
    }
}

/* This media query will "stack" the columns on mobile */
@media (max-width: 768px) {
    .about-us-container {
        flex-direction: column; /* Change from horizontal to vertical */
    }

    .text-column, .image-column {
        width: 100%; /* Make each column take the full width */
        padding: 10px 0; /* Add some space between them */
    }
}

/* This media query will make the text smaller on mobile */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px; /* A more mobile-friendly size */
    }
}