/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  font-size: 16px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a252f;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #4a5568;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1d4ed8;
}

/* Header Styles */
.site-header {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

.site-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

/* Navigation */
.main-navigation {
  position: relative;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  color: white;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #dbeafe;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dbeafe;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 2rem 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Slideshow Styles */
.slideshow-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.slideshow {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slideshow-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.slide-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slide-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.slide-btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.slide-indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
  background: white;
  transform: scale(1.2);
}

.indicator:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Slideshow Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide.active {
  animation: slideIn 0.5s ease-out;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 0;
}

.hero-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.hero-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.link-icon {
  font-size: 1.5rem;
}

/* Content Grid */
.content-grid {
  padding: 4rem 0;
  background: white;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

/* President Desk */
.president-desk {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.president-desk h2 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.president-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.president-image {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.president-text {
  flex: 1;
}

.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.read-more-link:hover {
  border-bottom-color: #2563eb;
}

/* News and Notifications Sections */
.news-section,
.notifications-section {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
}

.news-section h2,
.notifications-section h2 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-item {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.news-item a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.news-title {
  font-weight: 500;
  color: #1e293b;
}

.news-date {
  font-size: 0.875rem;
  color: #64748b;
}

.coming-soon {
  color: #64748b;
  font-style: italic;
}

.view-all-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.view-all-link:hover {
  border-bottom-color: #2563eb;
}

/* Activities, Future Plans, Events Sections */
.activities-section,
.future-plans-section,
.upcoming-events-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.activities-section .container,
.future-plans-section .container,
.upcoming-events-section .container {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.activities-section h2,
.future-plans-section h2,
.upcoming-events-section h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;
}

.events-list {
  display: grid;
  gap: 1.5rem;
}

.event-item {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.event-item h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.event-date {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0;
}

/* Footer */
.site-footer {
  background: #1e293b;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.footer-nav a {
  color: #cbd5e1;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-links {
    grid-template-columns: 1fr;
  }

  .slideshow-container {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
  }

  .nav-menu.show {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-title {
    font-size: 1.25rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .president-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 2rem 0;
  }

  .content-grid,
  .activities-section,
  .future-plans-section,
  .upcoming-events-section {
    padding: 2rem 0;
  }

  .president-desk,
  .news-section,
  .notifications-section,
  .activities-section .container,
  .future-plans-section .container,
  .upcoming-events-section .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles */
a:focus,
button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 6px;
}

/* About Page Specific Styles */
.page-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.breadcrumb {
  color: #dbeafe;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #dbeafe;
  text-decoration: underline;
}

.about-content {
  padding: 4rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text h2 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #4a5568;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.quick-links,
.key-stats {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.quick-links h3,
.key-stats h3 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 1rem;
}

.quick-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.quick-links a:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Objectives Section */
.objectives-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.objectives-section h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.objective-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.objective-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.objective-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.objective-card p {
  color: #4a5568;
  line-height: 1.6;
}

/* Vision Mission Section */
.vision-mission {
  padding: 4rem 0;
  background: white;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.vision-card,
.mission-card {
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.vision-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #0ea5e9;
}

.mission-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid #f59e0b;
}

.vision-card h2,
.mission-card h2 {
  color: #1e40af;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.vision-card p,
.mission-card p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .objectives-section h2 {
    font-size: 2rem;
  }

  .objective-card {
    padding: 1.5rem;
  }

  .vision-card,
  .mission-card {
    padding: 2rem;
  }

  .about-sidebar {
    gap: 1.5rem;
  }

  .quick-links,
  .key-stats {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 3rem 0 1.5rem;
  }

  .about-content {
    padding: 2rem 0;
  }

  .objectives-section {
    padding: 2rem 0;
  }

  .vision-mission {
    padding: 2rem 0;
  }

  .objective-card {
    padding: 1.25rem;
  }

  .vision-card,
  .mission-card {
    padding: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* Administration Page Specific Styles */
.administration-content {
  padding: 4rem 0;
  background: white;
}

.administration-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.admin-section {
  margin-bottom: 4rem;
}

.admin-section h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center;
  position: relative;
}

.admin-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 2px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.member-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.member-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.member-card:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
}

.member-info h3 {
  color: #1e293b;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.member-role {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page Specific Styles */
.contact-content {
  padding: 4rem 0;
  background: white;
}

.contact-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-info {
  background: #f8fafc;
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.contact-info h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-details {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.contact-icon {
  font-size: 1.5rem;
  color: #3b82f6;
}

.contact-text {
  margin: 0;
  color: #4a5568;
  font-weight: 500;
}

.contact-address {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  margin-top: 2rem;
}

.contact-address h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-address p {
  margin: 0.5rem 0;
  color: #4a5568;
  line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .member-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .administration-content {
    padding: 2rem 0;
  }

  .admin-section h2 {
    font-size: 1.5rem;
  }

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

  .member-card {
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-info {
    padding: 2rem;
  }

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

@media (max-width: 480px) {
  .administration-content {
    padding: 1.5rem 0;
  }

  .admin-section {
    margin-bottom: 2.5rem;
  }

  .admin-section h2 {
    font-size: 1.25rem;
  }

  .member-info {
    padding: 1rem;
  }

  .member-info h3 {
    font-size: 1.1rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-address {
    padding: 1.5rem;
  }
}

/* Additional Info Cards */
.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.info-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.info-card p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  padding: 0.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.25rem;
}

.social-links a:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: #f8fafc;
}

.map-section h2 {
  text-align: center;
  color: #1e40af;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.map-placeholder {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.map-content {
  max-width: 500px;
  margin: 0 auto;
}

.map-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.map-content h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.map-content p {
  color: #4a5568;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .additional-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .contact-content {
    padding: 2rem 0;
  }

  .contact-info {
    padding: 2rem;
  }

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

  .additional-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .map-section {
    padding: 2rem 0;
  }

  .map-placeholder {
    padding: 2rem;
  }

  .map-icon {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .contact-content {
    padding: 1.5rem 0;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-address {
    padding: 1.5rem;
  }

  .additional-info {
    margin-top: 1.5rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-links a {
    width: 100%;
    max-width: 200px;
  }

  .map-placeholder {
    padding: 1.5rem;
  }

  .map-content h3 {
    font-size: 1.25rem;
  }
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu-toggle {
    display: none;
  }

  .hero-section,
  .page-hero {
    background: white !important;
    -webkit-print-color-adjust: exact;
  }

  .page-hero h1 {
    color: #000 !important;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .objective-card,
  .vision-card,
  .mission-card,
  .member-card,
  .info-card,
  .contact-info {
    box-shadow: none;
    border: 1px solid #000;
    break-inside: avoid;
  }

  .member-grid,
  .additional-info {
    display: block;
  }

  .member-card,
  .info-card {
    margin-bottom: 1rem;
    page-break-inside: avoid;
  }

  .contact-details {
    display: block;
  }

  .contact-item {
    margin-bottom: 1rem;
    page-break-inside: avoid;
  }
}
