* {
  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: #000;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

body[data-theme="dark"] {
  background-color: #0a0a0a;
  color: #ffffff;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: #666;
  line-height: 1;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #000;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 300px;
  z-index: 1001;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.dropdown-content {
  padding: 1rem;
}

.dropdown-content a {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  color: #000;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-button,
.theme-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.search-button:hover,
.theme-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.search-button svg,
.theme-toggle svg {
  width: 20px;
  height: 20px;
  color: #333;
}

.theme-icon {
  transition: opacity 0.3s ease;
}

body[data-theme="light"] .moon-icon {
  opacity: 0;
  position: absolute;
}

body[data-theme="dark"] .sun-icon {
  opacity: 0;
  position: absolute;
}

body[data-theme="dark"] .navbar {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom-color: #333;
}

body[data-theme="dark"] .nav-dropdown {
  background: #1a1a1a;
  border-color: #333;
}

body[data-theme="dark"] .dropdown-content a {
  color: #ccc;
}

body[data-theme="dark"] .dropdown-content a:hover {
  color: white;
}

.main-content {
  min-height: calc(100vh - 80px);
}

.hero-section {
  padding: 7.5rem 2rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.9;
  margin-bottom: 2.5rem;
  letter-spacing: -2px;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 37.5rem;
  line-height: 1.6;
  margin: 0 auto;
  color: #666;
}

body[data-theme="dark"] .hero-description {
  color: #999;
}

.banner-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.banner-item {
  background-color: #0066ff;
  color: white;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.banner-item:hover {
  transform: translateX(0.5rem);
  background-color: #0052cc;
}

.banner-text-container {
  flex: 1;
  overflow: hidden;
}

.banner-text-track {
  display: flex;
  animation: scroll-banner 20s linear infinite;
  white-space: nowrap;
}

.banner-text {
  font-size: 2rem;
  font-weight: 600;
  margin-right: 4rem;
  flex-shrink: 0;
}

.banner-arrow {
  font-size: 2rem;
  margin-left: 2rem;
  transition: transform 0.3s ease;
}

.banner-item:hover .banner-arrow {
  transform: translate(0.5rem, -0.5rem);
}

@keyframes scroll-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.about-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

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

.section-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb-item {
  color: #666;
}

.breadcrumb-item.active {
  color: #000;
  font-weight: 500;
}

.breadcrumb-separator {
  color: #ccc;
}

.about-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.featured-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.featured-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.featured-label {
  background: #000;
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
}

.featured-date {
  color: #666;
  font-size: 0.9rem;
}

.about-description {
  max-width: 800px;
}

.about-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
}

body[data-theme="dark"] .about-description p {
  color: #ccc;
}

.about-content {
  position: relative;
}

.about-panel {
  display: none;
}

.about-panel.active {
  display: block;
}

.about-panel h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

body[data-theme="dark"] .about-text {
  color: #ccc;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}

.cta-button {
  background-color: #0066ff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #0052cc;
  transform: translateY(-1px);
}

.newsletter-signup {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  max-width: 300px;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 0.875rem;
}

body[data-theme="dark"] .newsletter-input {
  background: #333;
  border-color: #555;
  color: white;
}

.newsletter-btn {
  background-color: #0066ff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
  background-color: #0052cc;
}

.partnerships-section {
  padding: 5rem 2rem;
  background-color: #f8f9fa;
}

body[data-theme="dark"] .partnerships-section {
  background-color: #111;
}

.partnerships-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.partnerships-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body[data-theme="dark"] .partnerships-description {
  color: #999;
}

.logos-container {
  overflow: hidden;
  padding: 2rem 0;
}

.logos-track {
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 5rem;
}

.logo-item {
  height: 3.75rem;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.logo-item:hover {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.application-section {
  padding: 4rem 0;
  background: white;
}

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

.application-header {
  text-align: center;
  margin-bottom: 3rem;
}

.application-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.application-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.application-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.application-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.application-info ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.application-info li {
  margin-bottom: 0.5rem;
  color: #333;
}

.application-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.application-form h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  background: white;
}

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

.radio-group {
  display: flex;
  gap: 1rem;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}

.upload-section {
  margin: 2rem 0;
}

.upload-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.upload-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.upload-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.upload-btn {
  background: #000;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s;
}

.upload-btn:hover {
  background: #333;
}

.submit-btn {
  background: #000;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  margin-top: 1rem;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background: #333;
}


.footer {
  background: #000;
  color: white;
  padding: 3rem 0 2rem;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.newsletter-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 400px;
}

.email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #333;
  background: transparent;
  color: white;
  font-size: 0.9rem;
}

.email-input::placeholder {
  color: #666;
}

.email-input:focus {
  outline: none;
  border-bottom-color: white;
}

.send-button {
  background: none;
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s;
}

.send-button:hover {
  color: #ccc;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: white;
  transition: color 0.2s;
}

.social-link:hover {
  color: #ccc;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.important-notice-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.important-notice-overlay.active {
  opacity: 1;
  visibility: visible;
}

.important-notice-modal {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .important-notice-modal {
  background: #1a1a1a;
}

.important-notice-modal h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #0066ff;
}

.notice-content {
  text-align: left;
  margin-bottom: 2rem;
}

.notice-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #666;
}

body[data-theme="dark"] .notice-content p {
  color: #ccc;
}

.notice-button {
  background-color: #0066ff;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.notice-button:hover {
  background-color: #0052cc;
}

.terms-overlay,
.credits-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.terms-overlay.active,
.credits-overlay.active {
  opacity: 1;
  visibility: visible;
}

.terms-modal,
.credits-modal {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .terms-modal,
body[data-theme="dark"] .credits-modal {
  background: #1a1a1a;
}

.terms-header,
.credits-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}

body[data-theme="dark"] .terms-header,
body[data-theme="dark"] .credits-header {
  border-bottom-color: #333;
  background: #1a1a1a;
}

.terms-header h2,
.credits-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0066ff;
}

.terms-close,
.credits-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.terms-close:hover,
.credits-close:hover {
  color: #000;
}

body[data-theme="dark"] .terms-close:hover,
body[data-theme="dark"] .credits-close:hover {
  color: #fff;
}

.terms-content,
.credits-content {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.terms-content h3,
.credits-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
  color: #0066ff;
}

.terms-content h3:first-child,
.credits-content h3:first-child {
  margin-top: 0;
}

.terms-content p,
.credits-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #666;
}

body[data-theme="dark"] .terms-content p,
body[data-theme="dark"] .credits-content p {
  color: #ccc;
}

.terms-button,
.credits-button {
  background-color: #0066ff;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 1.5rem 2rem 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.terms-button:hover,
.credits-button:hover {
  background-color: #0052cc;
}


.review-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  max-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.review-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body[data-theme="dark"] .review-popup {
  background: #1a1a1a;
  border: 1px solid #333;
}

.review-content {
  position: relative;
}

.review-close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body[data-theme="dark"] .review-close {
  background: #333;
  color: white;
}

.review-popup h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.review-popup p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.star-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.star {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
  transition: color 0.2s;
}

.star:hover,
.star.active {
  color: #ffc107;
}

.review-popup textarea {
  width: 100%;
  min-height: 60px;
  padding: 0.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  resize: vertical;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

body[data-theme="dark"] .review-popup textarea {
  background: #333;
  border-color: #555;
  color: white;
}

.review-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.review-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

#reviewSkip {
  background: #f5f5f5;
  color: #666;
}

#reviewSkip:hover {
  background: #e5e5e5;
}

#reviewSubmit {
  background: var(--accent-color);
  color: white;
}

#reviewSubmit:hover {
  background: #0052cc;
}

body[data-theme="dark"] #reviewSkip {
  background: #333;
  color: #ccc;
}

body[data-theme="dark"] #reviewSkip:hover {
  background: #444;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .modal-content {
  background: #1a1a1a;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}

body[data-theme="dark"] .modal-header {
  border-bottom-color: #333;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0066ff;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.25rem;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #000;
}

body[data-theme="dark"] .modal-close:hover {
  color: #fff;
}

.modal-form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 0.75rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 0.875rem;
  font-family: inherit;
}

body[data-theme="dark"] .modal-form input,
body[data-theme="dark"] .modal-form select,
body[data-theme="dark"] .modal-form textarea {
  background: #333;
  border-color: #555;
  color: white;
}

.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: #999;
}

.modal-form button {
  background-color: #0066ff;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 0.5rem;
}

.modal-form button:hover {
  background-color: #0052cc;
}

.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  background-color: #f8f9fa;
}

body[data-theme="dark"] .page-hero {
  background-color: #111;
}

.page-container {
  max-width: 1400px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: -1px;
}

.page-content {
  padding: 5rem 2rem;
}

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

.content-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.content-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #0066ff;
}

.content-main {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

body[data-theme="dark"] .content-main {
  color: #ccc;
}

.content-main p {
  margin-bottom: 1.5rem;
}

.governance-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.governance-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

body[data-theme="dark"] .governance-description {
  color: #ccc;
}

.governance-body {
  text-align: center;
  margin-bottom: 3rem;
}

.governance-body h3 {
  font-size: 2rem;
  font-weight: 400;
}

.governance-overview {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

body[data-theme="dark"] .governance-overview {
  background-color: #222;
}

.governance-overview p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1.5rem;
}

body[data-theme="dark"] .governance-overview p {
  color: #ccc;
}

.leadership p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.governance-section {
  padding: 4rem 0;
  background: var(--bg-secondary);
}

.governance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.governance-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

.governance-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.governance-btn:hover {
  background: var(--bg-hover);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.governance-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.governance-btn:hover svg {
  transform: translateX(5px);
}

body[data-theme="dark"] .governance-section {
  background-color: #111;
}

body[data-theme="dark"] .governance-btn {
  background: #1a1a1a;
  border-color: #333;
  color: white;
}

body[data-theme="dark"] .governance-btn:hover {
  background: #222;
}

.application-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.application-overlay.active {
  opacity: 1;
  visibility: visible;
}

.application-modal {
  background: white;
  margin: 2rem auto;
  max-width: 800px;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.application-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.application-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.application-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.application-close:hover {
  background-color: #f5f5f5;
}

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

body[data-theme="dark"] .application-modal {
  background: #1a1a1a;
  color: white;
}

body[data-theme="dark"] .application-modal-header {
  border-bottom-color: #333;
  background: #1a1a1a;
}


.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5rem;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body[data-theme="dark"] .search-modal {
  background: #1a1a1a;
}

.search-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
  gap: 1rem;
}

body[data-theme="dark"] .search-header {
  border-bottom-color: #333;
}

.search-icon {
  width: 20px;
  height: 20px;
  color: #666;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
}

body[data-theme="dark"] .search-input {
  color: white;
}

.search-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.search-close:hover {
  background-color: #f5f5f5;
}

body[data-theme="dark"] .search-close {
  color: #ccc;
}

body[data-theme="dark"] .search-close:hover {
  background-color: #333;
}

.search-content {
  padding: 1.5rem;
}

.search-section {
  margin-bottom: 2rem;
}

.search-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body[data-theme="dark"] .search-section h4 {
  color: #ccc;
}

.search-suggestions,
.search-recent {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-suggestion,
.search-recent-item {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-size: 0.9rem;
}

.search-suggestion:hover,
.search-recent-item:hover {
  background-color: #f5f5f5;
}

body[data-theme="dark"] .search-suggestion:hover,
body[data-theme="dark"] .search-recent-item:hover {
  background-color: #333;
}

@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 1.5rem;
  }

  .navbar-nav {
    gap: 1.5rem;
  }

  .nav-dropdown {
    min-width: 300px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-sidebar {
    position: static;
  }

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

  .footer-right {
    align-items: center;
  }
}

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

  .navbar-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-dropdown {
    right: auto;
    left: 0;
    min-width: 250px;
  }

  .about-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .application-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-right {
    align-items: flex-start;
  }

  .review-popup {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .banner-text {
    font-size: 1.25rem;
  }

  .about-panel h3 {
    font-size: 1.5rem;
  }

  .governance-body h3 {
    font-size: 1.5rem;
  }
}
