
    :root {
      --primary: #7D2E2E; /* Maroon from logo */
      --secondary: #F8F5F0; /* Light cream background */
      --accent: #F28C28; /* Orange from logo */
      --accent-light: #FFE0B2; /* Light orange */
      --text-dark: #2D2013;
      --text-light: #F8F5F0;
      --font: 'Baloo 2', cursive;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: var(--font);
      background-color: var(--secondary);
      color: var(--text-dark);
      line-height: 1.6;
    }
    header {
      background-color: var(--primary);
      color: var(--text-light);
      padding: 1rem 2rem;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    .header-content {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .logo {
      width: 150px;
      height: 150px;
    }
    .org-title {
      text-align: left;
    }
    .org-title h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      padding: 1rem;
      background-color: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .dropdown {
      position: relative;
      display: inline-block;
    }
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 200px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 5px;
      overflow: hidden;
    }
    .dropdown:hover .dropdown-content {
      display: block;
    }
    .dropdown-content a {
      color: var(--primary);
      padding: 12px 16px;
      text-decoration: none;
      display: block;
      text-align: left;
      border-bottom: 1px solid #f1f1f1;
    }
    .dropdown-content a:hover {
      background-color: var(--accent-light);
    }
    nav a {
      text-decoration: none;
      color: var(--primary);
      font-weight: bold;
      padding: 0.6rem 1.2rem;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    nav a:hover {
      background-color: var(--accent);
      color: white;
    }
    .hero {
      position: relative;
      height: 500px;
      overflow: hidden;
    }
    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomEffect 20s infinite alternate;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      padding: 1rem;
    }
    .hero-overlay h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    .hero-overlay p {
      font-size: 1.5rem;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }
    @keyframes zoomEffect {
      0% {transform: scale(1);}
      100% {transform: scale(1.1);}
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }
    section {
      padding: 3rem 2rem;
      background-color: white;
      margin: 2rem 0;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }
    section:hover {
      transform: translateY(-5px);
    }
    h2 {
      color: var(--primary);
      margin-bottom: 1.5rem;
      font-size: 2rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }
    h3 {
      color: var(--primary);
      margin: 1.5rem 0 1rem;
      font-size: 1.5rem;
    }
    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }
    .stat-card {
      background-color: var(--primary);
      color: white;
      padding: 2rem;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .stat-card:hover {
      transform: translateY(-10px);
    }
    .stat-number {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }
    .stat-label {
      font-size: 1.2rem;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      height: 250px;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(125, 46, 46, 0.8);
      color: white;
      padding: 1rem;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
    }
    .timeline {
      position: relative;
      max-width: 1200px;
      margin: 2rem auto;
    }
    .timeline::after {
      content: '';
      position: absolute;
      width: 6px;
      background-color: var(--primary);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
    }
    .timeline-container {
      position: relative;
      width: 50%;
      padding: 15px 30px;
    }
    .timeline-container::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 25px;
      background-color: white;
      border: 4px solid var(--accent);
      border-radius: 50%;
      top: 15px;
      z-index: 1;
    }
    .left {
      left: 0;
    }
    .right {
      left: 50%;
    }
    .left::after {
      right: -13px;
    }
    .right::after {
      left: -13px;
    }
    .timeline-content {
      padding-left:   25px;
      background-color: white;
      position: relative;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
    .timeline-content h3 {
      color: var(--primary);
      margin-top: 2px;
    }
    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.15);
    }
    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .events-list {
      list-style: none;
    }
    .event-item {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px dashed #ddd;
      display: flex;
      align-items: center;
    }
    .event-date {
      background-color: var(--accent);
      color: white;
      border-radius: 8px;
      padding: 1rem;
      text-align: center;
      margin-right: 1.5rem;
      min-width: 100px;
    }
    .event-date-day {
      font-size: 1.8rem;
      font-weight: bold;
    }
    .event-details {
      flex: 1;
    }
    .event-title {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }
    .office-bearers {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }
    .office-bearers1 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 0.5rem;
      margin: 1rem 0;
    }
    .officer-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .officer-card:hover {
      transform: translateY(-10px);
    }
    .officer-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .officer-info {
      padding: 1.5rem;
      text-align: center;
    }
    .officer-name {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 0.5rem;
      color: var(--primary);
    }
    .officer-position {
      color: var(--accent);
      font-weight: 500;
      margin-bottom: 1rem;
    }
    .committee-members {
      margin: 2rem 0;
    }
    .committee-table {
      width: 100%;
      border-collapse: collapse;
      margin: 1rem 0;
    }
    .committee-table th, .committee-table td {
      padding: 0.8rem;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    .committee-table th {
      background-color: var(--primary);
      color: white;
    }
    .committee-table tr:nth-child(even) {
      background-color: var(--secondary);
    }
    .committee-table tr:hover {
      background-color: var(--accent-light);
    }
    .tabs {
      display: flex;
      flex-wrap: wrap;
      margin: 2rem 0;
    }
    .tab-btn {
      background-color: var(--secondary);
      border: none;
      padding: 1rem 2rem;
      cursor: pointer;
      flex-grow: 1;
      font-family: var(--font);
      font-weight: bold;
      color: var(--primary);
      transition: all 0.3s ease;
    }
    .tab-btn:hover {
      background-color: var(--accent);
      color: white;
    }
    .tab-btn.active {
      background-color: var(--primary);
      color: white;
    }
    .tab-content {
      display: none;
      padding: 2rem;
      width: 100%;
      background-color: white;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .tab-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    @keyframes fadeIn {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    .goshala-list {
      height: 400px;
      overflow-y: auto;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 1rem;
      margin: 2rem 0;
    }
    .goshala-list table {
      width: 100%;
      border-collapse: collapse;
    }
    .goshala-list th, .goshala-list td {
      padding: 0.8rem;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }
    .goshala-list th {
      position: sticky;
      top: 0;
      background-color: var(--primary);
      color: white;
    }
    .progress-container {
      width: 100%;
      background-color: #e0e0e0;
      border-radius: 5px;
      margin: 1rem 0;
    }
    .progress-bar {
      height: 25px;
      background-color: var(--accent);
      border-radius: 5px;
      text-align: center;
      line-height: 25px;
      color: white;
      font-weight: bold;
      transition: width 1s ease;
    }
    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }
    .contact-card {
      background-color: var(--secondary);
      padding: 1.5rem;
      border-radius: 10px;
      text-align: center;
    }
    .contact-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }
    footer {
      text-align: center;
      background-color: var(--primary);
      color: white;
      padding: 2rem 1rem;
      margin-top: 3rem;
    }
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      text-align: left;
    }
    .footer-section h3 {
      color: var(--accent);
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }
    .footer-section ul {
      list-style: none;
    }
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
    .footer-section ul li a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .footer-section ul li a:hover {
      color: var(--accent);
    }
    .copyright {
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
     /* Image Slider Styles */
  .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .slider {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  
  .slider-arrow:hover {
    opacity: 1;
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  .bottom-nav {
    display: none;
  }
  .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .dot {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: var(--accent);
  }
  
  /* Modify the existing hero-image style */
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: none; /* Remove the existing zoom animation */
  }
  
  /* Keep the overlay on top */
  .hero-overlay {
    z-index: 20;
  }
  
  @media (max-width: 768px) {
    .slider-arrow {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .dot {
      width: 12px;
      height: 12px;
    }
    
  }
  @media (max-width: 768px) {
  .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}
    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 1rem;
      }
      .org-title {
        text-align: center;
      }
      .hero {
        height: 400px;
      }
      .hero-overlay h2 {
        font-size: 2rem;
      }
      .hero-overlay p {
        font-size: 1.2rem;
      }
      .timeline::after {
        left: 31px;
      }
      .timeline-container {
        width: 100%;
        /*padding-left: 70px;*/
        /*padding-right: 25px;*/
      }
      .timeline-container.left::after, 
      .timeline-container.right::after {
        left: 18px;
      }
      .timeline-container.right {
        left: 0%;
      }

      /* Bottom Navigation for Mobile */
@media (max-width: 768px) {
  /* Hide the original navigation on mobile */
  nav {
    display: none;
  }
  
  /* Bottom Navigation Bar */
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
  }
  
  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    transition: background-color 0.3s;
  }
  
  .bottom-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0px;
  }
  
  .bottom-nav-item:hover, .bottom-nav-item.active {
    background-color: var(--accent);
  }
  
  /* Hamburger Menu */
  .hamburger-container {
    position: relative;
  }
  
  .hamburger-btn {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hamburger-btn span {
    font-size: 0.8rem;
    margin-top: 5px;
  }
  
  .hamburger-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 0;
    background-color: white;
    width: 200px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .hamburger-menu.active {
    display: block;
  }
  
  .hamburger-menu-section {
    border-bottom: 1px solid #eee;
  }
  
  .hamburger-menu-header {
    background-color: var(--primary);
    color: white;
    padding: 12px 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hamburger-menu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .hamburger-menu-items.active {
    max-height: 500px;
  }
  
  .hamburger-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
  }
  
  .hamburger-menu a:hover {
    background-color: var(--accent-light);
  }
  
  /* Add padding to the bottom of the page to prevent content from being hidden behind the bottom nav */
  body {
    padding-bottom: 60px;
  }
  
  /* Overlay for closing the menu when clicking outside */
  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
  }
  
  .overlay.active {
    display: block;
  }
}
    }
     .tab-btn {
    font-size: 1rem;
  }
    
     #uddeshya {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        #uddeshya:hover {
            transform: translateY(-5px);
        }
        
        /*h2 {*/
        /*    color: var(--primary);*/
        /*    margin-bottom: 2rem;*/
        /*    font-size: 2.5rem;*/
        /*    padding-bottom: 0.5rem;*/
        /*    border-bottom: 2px solid var(--accent);*/
        /*    display: inline-block;*/
        /*    text-align: center;*/
        /*    width: 100%;*/
        /*}*/
        
        /*h3 {*/
        /*    color: var(--primary);*/
        /*    font-size: 1.5rem;*/
        /*    margin: 1.5rem 0 1rem;*/
        /*    border-bottom: 2px solid var(--accent);*/
        /*    padding-bottom: 5px;*/
        /*    display: inline-block;*/
        /*}*/
        
        /* Desktop Row Layout */
        .desktop-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
           /*gap: 0.5rem;*/
            /*margin: 1rem 0;*/
        }
        
        .section-card {
            background: linear-gradient(135deg, var(--accent-light) 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent);
        }
        
        .section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .main-objectives::before {
            background: var(--primary);
        }
        
        .achievements::before {
            background: #27ae60;
        }
        
        .future-plans::before {
            background: #3498db;
        }
        
        ul {
        /*    padding-left: 1.5rem;*/
        /*    margin: 1.5rem 0;*/
        /*    list-style: none;*/
        /*}*/
        
        /*li {*/
        /*    margin-bottom: 12px;*/
        /*    color: var(--text-dark);*/
        /*    font-weight: 500;*/
        /*    position: relative;*/
        /*    padding-left: 20px;*/
        /*    transition: all 0.3s ease;*/
        /*}*/
        
        /*li::before {*/
        /*    content: '•';*/
        /*    color: var(--accent);*/
        /*    font-size: 1.5rem;*/
        /*    position: absolute;*/
        /*    left: 0;*/
        /*    top: -3px;*/
        /*}*/
        
        /*li:hover {*/
        /*    color: var(--primary);*/
        /*    transform: translateX(5px);*/
        /*}*/
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .desktop-row {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            #uddeshya {
                padding: 2rem 1rem;
                margin: 1rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            h3 {
                font-size: 1.3rem;
            }
            
            .section-card {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .section-card {
                padding: 1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            li {
                font-size: 0.95rem;
            }
        }
        
        
  #dengi {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 28px;
        }
        
        #office-bearers1 {
            display: flex;
            flex-direction: column;
            gap: 10px; /* Reduced from 20px */
        }
        
        .officer-card1 {
            display: flex;
            flex-direction: column;
            gap: 10px; /* Reduced from 20px */
        }
        
        .officer-info1 {
            display: flex;
            flex-direction: column;
            gap: 15px; /* Reduced from 20px */
        }
        
        .bank-details ul {
            list-style: none;
            padding: 0;
            margin: 0;
             font-size: 32px;
        }
        
       .bank-details li {
           font-size:32px;
            /* Increased from 18px 
        /*    line-height: 2;*/
            margin-bottom: 15px; /* Increased for better readability with larger font */
        /*    padding: 10px 0;*/
        /*    border-bottom: 1px solid #e0e0e0;*/
        }
        
        .bank-details strong {
            font-size: 24px; /* Increased from 19px */
            color: #2c3e50;
            font-weight: 600;
        }
        
        .bank-image {
            margin-top: 10px; /* Small margin instead of relying on gap */
        }
        
        .bank-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        /* Responsive design */
        @media (max-width: 600px) {
            .bank-details li {
                font-size: 20px;
            }
            .bank-details strong {
                font-size: 22px;
            }
        }
  /* Desktop: side by side layout */
  @media (min-width: 768px) {
    .officer-info1 {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }

    .bank-details {
      flex: 1;
    }

    .bank-image {
      flex: 0 0 300px;
      padding-left: 30px;
    }
  }
  
  
  .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 20px 0;
}

/* Individual Name Card */
.name-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.name-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Card Content */
.card-content {
    padding: 16px;
    text-align: center;
}

.name-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    /*color: #333;*/
    line-height: 1.4;
}

/* City Title */
.city-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

/* No Selection Message */
.no-selection {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .name-card {
        margin-bottom: 8px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .name-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}