:root {
  --ratio: calc(100vw / 1920);
  --primary-color: #000c23;
  --accent-color: #FFD700;
  --text-color: #fff;
  --font-family: Inter, sans-serif;
}

/* Base styles */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font-family);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout */
.container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  padding-bottom: 70px; /* Space for footer */
}

/* Navigation */
.nav-tabs {
  border-bottom: 2px solid var(--primary-color);
}

.nav-tabs .nav-link {
  color: var(--primary-color);
  font-size: calc(18px * var(--ratio));
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
}

/* Content sections */
.tab-content {
  margin-top: 20px;
}

.tab-pane {
  padding: 20px;
  background: var(--text-color);
  border-radius: 10px;
}

/* Text styles */
h1, h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

/* Cards and sections */
.faq-section, .calendar, .contact-form {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

/* Forms */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  border-radius: 8px;
  z-index: 1000;
  text-align: center;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 10px 0;
  z-index: 1000;
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-tabs .nav-link {
    padding: 8px 12px;

    font-size: 14px;
  }

  .contact-form {
    width: 100%;
    padding: 1rem;
  }
}
