
@media (max-width: 1024px) {

  .container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .page-layout {
    grid-template-columns: 1fr 2fr;
    gap: 24px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


@media (max-width: 768px) {


  .page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
    grid-row: 1;
    margin-top: 0;
  }

  .content-area {
    grid-row: 2;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }



  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-blue);
    transition: all 0.3s ease-in-out;
  }

  .hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    max-height: 0;

    overflow: hidden;

    background: var(--white);
    flex-direction: column;
    align-items: center;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding-bottom: 30px;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .nav-links .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: auto;
    padding: 0 0 10px;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
  }

  .nav-links .nav-item.dropdown.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .nav-links .dropdown-menu li {
    border-bottom: none;
  }

  .nav-links .dropdown-menu a {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
  }



  .logo-text h1 {
    font-size: 0.9rem;
  }

  .logo-text p {
    font-size: 0.7rem;
  }

  .logo-img {
    height: 45px;
  }


  .hero-section {
    height: 400px;
    min-height: 400px;
    padding: 40px 0;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-arrow-left {
    left: 10px;
  }

  .slider-arrow-right {
    right: 10px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dots {
    bottom: 10px;
    gap: 8px;
  }



  .notification-bar .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .notification-label {
    margin-right: 0;
    width: 100%;
  }



  .top-bar .contact-info {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .result-card {
    padding: 15px;
  }

  .stat-value {
    font-size: 1.1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


