@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Vazirmatn';
  src: url('fonts/Vazirmatn-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
  }
    
  .loading-logo {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-accent);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  }
    
  .loading-text {
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-size: 1.2rem;
  }
    
  .loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--dark-accent);
    animation: spin 1s linear infinite;
  }
    
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
    
  .loading-planet {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle at 30% 30%, #D4AF37, #003366);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
  }
    
  @keyframes orbit {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
  }
  
  :root {
    --dark-primary: #0a0a1a;
    --dark-secondary: #1a1a3d;
    --dark-accent: #D4AF37;
    --dark-text: #f0f0f0;
    --dark-card: #1e1e3a;
    
    --light-primary: #f5f7fa;
    --light-secondary: #e6f0fa;
    --light-accent: #003366;
    --light-text: #1a1a3d;
    --light-card: #ffffff;
    
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
    --info: #3498db;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
  }
  
  .content-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .read-more-checkbox {
    display: none;
  }
  
  .read-more-checkbox:checked ~ .card-text .content-collapsed {
    -webkit-line-clamp: unset;
  }
  
  .read-more-btn {
    color: var(--dark-accent);
    cursor: pointer;
    display: block;
    text-align: right;
    padding: 8px 0;
  }
  
  #more-articles {
    display: none;
  }
  
  .download-btn i {
    margin-left: 5px;
  }
  
  #more-articles {
    animation: fadeIn 0.5s ease-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  #show-all-articles {
    transition: all 0.3s ease;
  }
  
  #show-all-articles:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: rgba(0,0,0,0.05);
  }
  
  .video-placeholder .placeholder-icon {
    font-size: 3rem;
    color: var(--dark-accent);
    margin-bottom: 1rem;
  }
  
  body.light-mode .video-placeholder .placeholder-icon {
    color: var(--light-accent);
  }
  
  #show-all-videos {
    transition: all 0.3s ease;
  }
  
  #show-all-videos:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .dark-mode .read-more-btn {
    color: var(--dark-accent);
  }
  
  .dark-mode .read-more-btn:hover {
    color: #f1c40f;
  }
  
  .light-mode .read-more-btn {
    color: var(--light-accent);
  }
  
  .light-mode .read-more-btn:hover {
    color: #004080;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Vazirmatn", sans-serif;
    background-color: var(--dark-primary);
    color: var(--dark-text);
    transition: background-color var(--transition-normal), color var(--transition-normal);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
  }
  
  body.light-mode {
    background-color: var(--light-primary);
    color: var(--light-text);
  }
  
  #starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
  }
  
  header {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-primary) 100%);
    color: var(--dark-accent);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    padding: 1rem;
    text-align: center;
  }
  
  body.light-mode header {
    background: linear-gradient(135deg, var(--light-secondary) 0%, var(--light-primary) 100%);
    color: var(--light-accent);
  }

  .logo {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0.5rem 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    position: relative;
    display: inline-block;
  }
  
  .logo::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dark-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
  }
  .logo:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  body.light-mode .logo {
    text-shadow: 0 0 15px rgba(0, 51, 102, 0.3);
  }
  
  body.light-mode .logo::after {
    background: var(--light-accent);
  }
  
  .logo-text {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 0.5rem;
    display: block;
  }
  
.logo-section {
    text-align: center;
    margin: 60px 0 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, 
        rgba(26, 26, 61, 0.8) 0%, 
        rgba(10, 10, 26, 0.9) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

body.light-mode .logo-section {
    background: linear-gradient(135deg, 
        rgba(230, 240, 250, 0.8) 0%, 
        rgba(245, 247, 250, 0.9) 100%);
    border: 1px solid rgba(0, 51, 102, 0.2);
}

.logo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    z-index: 0;
}

.logo-section * {
    position: relative;
    z-index: 1;
}

.logo-frame {
    display: inline-block;
    position: relative;
    margin: 30px auto;
    padding: 25px;
    background: linear-gradient(145deg, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

body.light-mode .logo-frame {
    background: linear-gradient(145deg, 
        rgba(0, 51, 102, 0.05) 0%,
        rgba(0, 51, 102, 0.02) 100%);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        0 0 0 1px rgba(0, 51, 102, 0.1);
}

.logo-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent
    );
    transition: left 0.8s ease;
}

.logo-frame:hover::before {
    left: 100%;
}

.logo-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body.light-mode .logo-frame:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(0, 51, 102, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.logo-single {
    width: 320px;
    height: 160px;
    object-fit: contain;
    filter: 
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3))
        brightness(1.05)
        contrast(1.1);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.05), 
        rgba(26, 26, 61, 0.1)) padding-box;
}

.logo-frame:hover .logo-single {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.05);
    filter: 
        drop-shadow(0 15px 30px rgba(212, 175, 55, 0.3))
        brightness(1.1)
        contrast(1.2);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

body.light-mode .logo-single {
    filter: 
        drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2))
        brightness(1.02)
        contrast(1.05);
    background: linear-gradient(45deg, 
        rgba(0, 51, 102, 0.03), 
        rgba(230, 240, 250, 0.1)) padding-box;
}

body.light-mode .logo-frame:hover .logo-single {
    filter: 
        drop-shadow(0 15px 30px rgba(0, 51, 102, 0.3))
        brightness(1.05)
        contrast(1.1);
    border: 2px solid rgba(0, 51, 102, 0.2);
}

.logo-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

body.light-mode .logo-title {
    background: linear-gradient(135deg, #003366, #0066CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #D4AF37, 
        transparent);
    border-radius: 2px;
}

body.light-mode .logo-title::after {
    background: linear-gradient(90deg, 
        transparent, 
        #003366, 
        transparent);
}

.logo-description {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.7;
    font-size: 17px;
    font-weight: 300;
    padding: 0 20px;
}

body.light-mode .logo-description {
    color: rgba(26, 26, 61, 0.8);
}

.logo-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.star-decoration {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #D4AF37 30%, transparent 70%);
    border-radius: 50%;
    animation: twinkle 3s infinite alternate;
    top: 20%;
    left: 10%;
}

body.light-mode .star-decoration {
    background: radial-gradient(circle, #003366 30%, transparent 70%);
}

.star-decoration:nth-child(2) {
    top: 70%;
    left: 85%;
    animation-delay: 1s;
    width: 15px;
    height: 15px;
}

.star-decoration:nth-child(3) {
    top: 40%;
    left: 90%;
    animation-delay: 2s;
    width: 25px;
    height: 25px;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.glow-effect {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 70%
    );
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse-glow 6s ease-in-out infinite;
}

body.light-mode .glow-effect {
    background: radial-gradient(
        circle,
        rgba(0, 51, 102, 0.1) 0%,
        transparent 70%
    );
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2), 
        rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

body.light-mode .logo-badge {
    background: linear-gradient(135deg, 
        rgba(0, 51, 102, 0.1), 
        rgba(0, 51, 102, 0.05));
    border: 1px solid rgba(0, 51, 102, 0.2);
    color: #003366;
}

.logo-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

body.light-mode .logo-badge:hover {
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.1);
}

@media (max-width: 768px) {
    .logo-section {
        padding: 30px 15px;
        margin: 40px 0 30px;
        border-radius: 20px;
    }
    
    .logo-frame {
        padding: 20px;
    }
    
    .logo-single {
        width: 280px;
        height: 140px;
    }
    
    .logo-title {
        font-size: 28px;
    }
    
    .logo-description {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .glow-effect {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo-single {
        width: 240px;
        height: 120px;
    }
    
    .logo-title {
        font-size: 24px;
    }
    
    .logo-badge {
        padding: 8px 20px;
        font-size: 12px;
    }
}

button,
.btn,
.btn-primary,
.btn-secondary,
.btn-wave,
input[type="button"],
input[type="submit"],
.nav-link,
.event-card .btn,
.card .btn,
.newsletter .btn,
footer .btn {
  font-family: "Vazirmatn", "Segoe UI", "IRANSans", Tahoma, sans-serif !important;
  font-weight: 500 !important;
}

body, p, h1, h2, h3, h4, h5, h6, a, span, div, section, article,
.card-title, .card-text, .section-title, .logo-text, .hero-title, .hero-subtitle,
.modal-title, .modal-content, .footer-column, .footer-links, .copyright {
  font-family: "Vazirmatn", "Segoe UI", "IRANSans", Tahoma, sans-serif !important;
}

input, textarea, select, button, .form-control, .form-label {
  font-family: "Vazirmatn", "Segoe UI", "IRANSans", Tahoma, sans-serif !important;
}

.nav-container, .nav-menu, .nav-link, .nav-logo, .close-nav {
  font-family: "Vazirmatn", "Segoe UI", "IRANSans", Tahoma, sans-serif !important;
}

footer, .footer-column, .footer-links, .footer-link a, .copyright p {
  font-family: "Vazirmatn", "Segoe UI", "IRANSans", Tahoma, sans-serif !important;
}

  .hero-banner {
    background-size: cover;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  
  .hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 0.6rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    margin: 0.5rem;
  }
  
  .btn-primary {
    background: linear-gradient(45deg, var(--dark-accent), #f1c40f);
    color: #000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
  }
  
  .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
  }
  
  .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
  }
  
  body.light-mode .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--light-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  body.light-mode .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-content {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border-right: 4px solid;
}

.toast-success .toast-content {
  border-right-color: #2ecc71;
}

.toast-error .toast-content {
  border-right-color: #e74c3c;
}

.toast-warning .toast-content {
  border-right-color: #f39c12;
}

.toast-info .toast-content {
  border-right-color: #3498db;
}

.toast-icon {
  font-size: 1.3rem;
}

.toast-message {
  font-size: 0.9rem;
  color: var(--dark-text);
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-text);
  opacity: 0.7;
}

body.light-mode .toast-content {
  background: var(--light-card);
  color: var(--light-text);
}

body.light-mode .toast-message {
  color: var(--light-text);
}

.typing-effect {
  display: inline-block;
  min-width: 150px;
}

.typing-effect::after {
  content: '|';
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

body.modal-open, body.menu-open {
  overflow: hidden;
}

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  transform: translateX(450px);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-content {
  background: var(--dark-card);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  min-width: 280px;
  max-width: 400px;
}

.toast-icon {
  font-size: 1.4rem;
}

.toast-message {
  font-size: 0.9rem;
  color: var(--dark-text);
  flex: 1;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-text);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.toast-close:hover {
  opacity: 1;
}

body.light-mode .toast-content {
  background: var(--light-card);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

body.light-mode .toast-message {
  color: var(--light-text);
}

@media (max-width: 768px) {
  .toast-notification {
      bottom: 20px;
      right: 20px;
      left: 20px;
  }
  
  .toast-content {
      min-width: auto;
      width: calc(100% - 40px);
      max-width: none;
  }
}

  .nav-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-card);
    z-index: 1000;
    transition: left var(--transition-normal);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-container.active {
    left: 0;
  }
  
  body.light-mode .nav-container {
    background: var(--light-card);
  }
  
  .nav-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  body.light-mode .nav-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-accent);
  }
  
  body.light-mode .nav-logo {
    color: var(--light-accent);
  }
  
  .close-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
  }
  
  body.light-mode .close-nav {
    color: var(--light-text);
  }
  
  .nav-menu {
    padding: 1rem;
  }
  
  .nav-item {
    margin-bottom: 0.5rem;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 0.5rem;
    color: var(--dark-text);
    text-decoration: none;
    transition: all var(--transition-fast);
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }
  
  .nav-link.active {
    background: rgba(212, 175, 55, 0.2);
    color: var(--dark-accent);
  }
  
  body.light-mode .nav-link {
    color: var(--light-text);
  }
  
  body.light-mode .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
  }
  
  body.light-mode .nav-link.active {
    background: rgba(0, 51, 102, 0.1);
    color: var(--light-accent);
  }
  
  .nav-icon {
    margin-left: 0.8rem;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
  }
  
  .hamburger {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark-accent);
    cursor: pointer;
    z-index: 900;
    transition: transform var(--transition-fast);
  }
  
  .hamburger:hover {
    transform: rotate(90deg);
  }
  
  body.light-mode .hamburger {
    color: var(--light-accent);
  }
  
  .theme-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--dark-accent);
    cursor: pointer;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    backdrop-filter: blur(5px);
  }
  
  .theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
    background: rgba(212, 175, 55, 0.3);
  }
  
  body.light-mode .theme-toggle {
    color: var(--light-accent);
  }
  
  body.light-mode .theme-toggle:hover {
    background: rgba(0, 51, 102, 0.2);
  }
  
  .main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .section {
    margin-bottom: 4rem;
    position: relative;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    color: var(--dark-accent);
  }
  
  body.light-mode .section-title {
    color: var(--light-accent);
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--dark-accent);
  }
  
  body.light-mode .section-title::after {
    background: var(--light-accent);
  }
  
  .card {
    background: var(--dark-card);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
  }
  
  body.light-mode .card {
    background: var(--light-card);
    box-shadow: var(--shadow-sm);
  }
  
  body.light-mode .card:hover {
    box-shadow: var(--shadow-md);
  }
  
  .card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-accent);
  }
  
  body.light-mode .card-title {
    color: var(--light-accent);
  }
  
  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-accent);
  }
  
  body.light-mode .card-icon {
    color: var(--light-accent);
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    aspect-ratio: 4/3;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
  }
  
  .gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }
  
  .gallery-item:hover .gallery-img {
    transform: scale(1.1);
  }
  
  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
  }
  
  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }
  
  .events-slider {
    position: relative;
    padding: 2rem 0;
  }
  
  .swiper {
    width: 100%;
    height: 100%;
    padding: 1rem 0;
  }
  
  .event-card {
    background: var(--dark-card);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
  }
  
  body.light-mode .event-card {
    background: var(--light-card);
  }
  
  .event-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .event-content {
    padding: 1.5rem;
  }
  
  .event-date {
    color: var(--dark-accent);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  body.light-mode .event-date {
    color: var(--light-accent);
  }
  
  .event-date i {
    margin-left: 0.5rem;
  }
  
  .event-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
    font-family: inherit;
    transition: all var(--transition-fast);
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--dark-accent);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
  }
  
  body.light-mode .form-control {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.05);
    color: var(--light-text);
  }
  
  body.light-mode .form-control:focus {
    border-color: var(--light-accent);
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.2);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(5px);
  }
  
  .modal.active {
    opacity: 1;
    visibility: visible;
  }
  
  .modal-content {
    background: var(--dark-card);
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  
  .modal.active .modal-content {
    transform: translateY(0);
  }
  
  body.light-mode .modal-content {
    background: var(--light-card);
  }
  
  .modal-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-text);
    cursor: pointer;
  }
  
  body.light-mode .modal-close {
    color: var(--light-text);
  }
  
  .modal-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-accent);
    text-align: center;
  }
  
  body.light-mode .modal-title {
    color: var(--light-accent);
  }
  
  .login-options {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .login-option {
    padding: 0.5rem 1.5rem;
    border: none;
    background: none;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    color: var(--dark-text);
    opacity: 0.7;
  }
  
  .login-option.active {
    opacity: 1;
    font-weight: 500;
  }
  
  .login-option.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark-accent);
  }
  
  body.light-mode .login-option {
    color: var(--light-text);
  }
  
  body.light-mode .login-option.active::after {
    background: var(--light-accent);
  }
  
  .social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast);
  }
  
  .social-btn:hover {
    transform: translateY(-3px);
  }
  
  .facebook {
    background: #3b5998;
  }
  
  .google {
    background: #db4437;
  }
  
  .twitter {
    background: #1da1f2;
  }
  
  .divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--dark-text);
    opacity: 0.7;
  }
  
  body.light-mode .divider {
    color: var(--light-text);
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
  }
  
  body.light-mode .divider::before,
  body.light-mode .divider::after {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .quiz-modal .modal-content {
    max-width: 700px;
  }
  
  .quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .quiz-timer {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--danger);
  }
  
  .quiz-progress {
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 1.5rem;
    overflow: hidden;
  }
  
  body.light-mode .quiz-progress {
    background: rgba(0, 0, 0, 0.1);
  }
  
  .quiz-progress-bar {
    height: 100%;
    background: var(--dark-accent);
    width: 0%;
    transition: width 0.3s;
  }
  
  body.light-mode .quiz-progress-bar {
    background: var(--light-accent);
  }
  
  .quiz-question {
    margin-bottom: 1.5rem;
  }
  
  .quiz-question-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .quiz-options {
    display: grid;
    gap: 0.8rem;
  }
  
  .quiz-option {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  
  .quiz-option:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .quiz-option.selected {
    background: rgba(212, 175, 55, 0.3);
    border: 1px solid var(--dark-accent);
  }
  
  body.light-mode .quiz-option {
    background: rgba(0, 0, 0, 0.05);
  }
  
  body.light-mode .quiz-option:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  
  body.light-mode .quiz-option.selected {
    background: rgba(0, 51, 102, 0.1);
    border: 1px solid var(--light-accent);
  }
  
  .quiz-option input {
    margin-left: 0.8rem;
  }
  
  .quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  
  .quiz-result {
    text-align: center;
    padding: 2rem;
  }
  
  .quiz-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-accent);
    margin-bottom: 1rem;
  }
  
  body.light-mode .quiz-score {
    color: var(--light-accent);
  }
  
  .quiz-feedback {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .newsletter {
    background: linear-gradient(135deg, var(--dark-secondary), var(--dark-primary));
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
  }
  
  body.light-mode .newsletter {
    background: linear-gradient(135deg, var(--light-secondary), var(--light-primary));
  }
  
  .newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
  }
  
  .newsletter-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  body.light-mode .newsletter-title {
    color: var(--light-text);
  }
  
  .newsletter-text {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  body.light-mode .newsletter-text {
    color: rgba(0, 0, 0, 0.8);
  }
  
  .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 0.6rem 0 0 0.6rem;
    border: none;
    font-family: inherit;
  }
  
  .newsletter-input:focus {
    outline: none;
  }
  
  .newsletter-btn {
    border-radius: 0 0.6rem 0.6rem 0;
    padding: 0 1.5rem;
    border: none;
    background: var(--dark-accent);
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
  }
  
  .newsletter-btn:hover {
    background: #f1c40f;
  }
  
  body.light-mode .newsletter-btn {
    background: var(--light-accent);
    color: white;
  }
  
  body.light-mode .newsletter-btn:hover {
    background: #004080;
  }
  
  footer {
    background: var(--dark-secondary);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 3rem;
  }
  
  body.light-mode footer {
    background: var(--light-secondary);
    color: var(--light-text);
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: right;
  }
  
  .footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-accent);
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--dark-accent);
  }
  
  body.light-mode .footer-column h3 {
    color: var(--light-accent);
  }
  
  body.light-mode .footer-column h3::after {
    background: var(--light-accent);
  }
  
  .footer-links {
    list-style: none;
  }
  
  .footer-link {
    margin-bottom: 0.8rem;
  }
  
  .footer-link a {
    color: white;
    text-decoration: none;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
  }
  
  .footer-link a:hover {
    color: var(--dark-accent);
  }
  
  body.light-mode .footer-link a {
    color: var(--light-text);
  }
  
  body.light-mode .footer-link a:hover {
    color: var(--light-accent);
  }
  
  .footer-link i {
    margin-left: 0.5rem;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
  }
  
  .social-link:hover {
    background: var(--dark-accent);
    transform: translateY(-3px);
  }
  
  body.light-mode .social-link {
    background: rgba(0, 0, 0, 0.1);
    color: var(--light-text);
  }
  
  body.light-mode .social-link:hover {
    background: var(--light-accent);
    color: white;
  }
  
  .copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  
  body.light-mode .copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, 0.7);
  }
  
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 800;
    box-shadow: var(--shadow-md);
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  .back-to-top:hover {
    transform: translateY(-5px);
  }
  
  body.light-mode .back-to-top {
    background: var(--light-accent);
    color: white;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInUp {
    from { 
      transform: translateY(50px);
      opacity: 0;
    }
    to { 
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  .read-more-checkbox {
    display: none;
  }
  
  .content-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .read-more-checkbox:checked ~ .card-text .content-collapsed {
    display: block;
    -webkit-line-clamp: unset;
  }
  
  .read-more-btn {
    display: inline-block;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.3s ease;
  }
  
  .read-more-checkbox:checked ~ .read-more-btn .read-more-icon {
    transform: rotate(180deg);
  }
  
  .read-more-icon {
    transition: transform 0.3s ease;
  }
  
  .events-slider {
    position: relative;
    padding: 0 40px;
  }
  
  .swiper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
  }
  
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .swiper-button-next {
    right: 0;
  }
  
  .swiper-button-prev {
    left: 0;
  }
  
  .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
  }
  
  .gallery-container {
    position: relative;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover .gallery-img {
    transform: scale(1.05);
  }
  
  .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .gallery-caption {
    transform: translateY(0);
  }
  
  .hidden {
    display: none;
  }
  
  #showMoreBtn {
    display: block;
    margin: 0 auto;
    padding: 10px 25px;
    background-color: #2c3e50;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  #showMoreBtn:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
  }
  
  .video-container video {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInUp {
    from { 
      opacity: 0;
      transform: translateY(20px);
    }
    to { 
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .modal.active {
    display: flex !important;
    justify-content: center;
    align-items: flex-start;
    animation: fadeIn 0.5s ease;
    padding: 20px 0;
  }
  
  .logo-img:hover {
    transform: rotateY(15deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    transition: all 0.5s ease;
  }
  
  #startExploringBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.6);
  }
  
  #startExploringBtn:hover .btn-hover-effect {
    left: 100%;
  }
  
  @media (max-width: 992px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 768px) {
    .logo {
      font-size: 2.2rem;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .main-container {
      padding: 1.5rem;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .newsletter-input {
      border-radius: 0.6rem;
      margin-bottom: 0.5rem;
    }
    
    .newsletter-btn {
      border-radius: 0.6rem;
      padding: 0.8rem;
    }
    
    .events-slider {
      padding: 0 30px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
      width: 30px;
      height: 30px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px;
    }
    
    .modal-content {
      padding: 1.5rem !important;
      margin: 5% auto !important;
    }
    
    .modal-title {
      font-size: 1.5rem !important;
    }
    
    .logo-img {
      max-width: 200px !important;
    }
    
    .features {
      padding: 1rem !important;
    }
  }
  
  @media (max-width: 576px) {
    .logo {
      font-size: 1.8rem;
    }
    
    .hero-title {
      font-size: 1.8rem;
    }
    
    .hero-banner {
      height: 60vh;
      min-height: 400px;
    }
    
    .btn {
      padding: 0.7rem 1.5rem;
      font-size: 0.9rem;
    }
    
    .modal-content {
      padding: 1.5rem;
    }
    
    .modal-title {
      font-size: 1.5rem;
    }
  }