
@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .badge-container {
    padding: 2rem;
  }
  
  .organizer-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .organizer-map {
    height: 300px;
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}


@media (max-width: 1170px) {
  :root {
    --header-height: 70px;
  }

  body {
    padding-top: var(--header-height);
  }

  
  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--secondary-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    left: 0;
  }

  .main-nav a {
    font-size: 1.25rem;
  }

  .header-container .cta-button {
    display: none; 
  }
}


@media (max-width: 768px) {

  
  .hero {
    padding: 5rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-cta .cta-button {
    width: 100%;
    max-width: 320px;
  }

  
  .badge-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .license-details {
    grid-template-columns: 1fr;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

  .license-logo-wrapper {
    margin-left: 0;
  }

  
  .lottery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rg-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rg-links ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  
  .modal-content {
    padding: 2rem 1.5rem;
  }

  
  .cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .cookie-text {
    margin-right: 0;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
    max-width: 160px;
  }

  
  .chatbot-window {
    width: calc(100vw - 4rem);
    height: 400px;
    bottom: 70px;
  }
}


@media (max-width: 540px) {
  :root {
    --header-height: 90px;
  }

  .container {
    padding: 0 1rem;
  }

  .logo-section img {
    width: 35px !important;
    height: 35px !important;
  }

  .brand-name {
    font-size: 1.2rem !important;
  }

  .logo-section span:not(.brand-name) {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
  }
}


@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }

  .badge-container {
    padding: 1.5rem;
  }

  .organizer-details {
    padding: 1.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .chatbot-widget {
    bottom: 1rem;
    right: 1rem;
  }
  
  .chatbot-window {
    width: calc(100vw - 2rem);
    bottom: 70px;
  }
}
