/* Import Manrope font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f5f5f5;
}

/* Reset list styles globally */
ul, ol {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

/* Navigation styles */
.navbar {
  background-color: gainsboro !important;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-name {
  font-size: 24px;
  font-weight: 800;
  color: #2c3e50;
}

.navbar-menu ul {
  list-style: none !important;
}

.navbar-menu ul li::before,
.navbar-menu ul li::after {
  display: none !important;
}

.navbar-item {
  color: #2c3e50 !important;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
  list-style: none !important;
}

.navbar-item::before,
.navbar-item::after {
  display: none !important;
}

.navbar-item:hover {
  color: lime !important;
  background-color: transparent !important;
}

.navbar-burger {
  color: #2c3e50;
}

.cta-button {
  background-color: lime !important;
  color: #2c3e50 !important;
  border: none !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  text-align: center !important;
  white-space: nowrap !important;
  display: inline-block !important;
  transition: opacity 0.3s !important;
}

.cta-button:hover {
  opacity: 0.8 !important;
  background-color: lime !important;
  color: #2c3e50 !important;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, gainsboro 0%, #d3d3d3 100%) !important;
  padding: 4rem 1.5rem !important;
  margin-bottom: 3rem !important;
}

.hero h1 {
  color: #2c3e50 !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
  line-height: 1.2 !important;
}

.hero-body p {
  color: #2c3e50 !important;
  font-size: 18px !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.6 !important;
}

.hero-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Content sections */
.section {
  padding: 3rem 1.5rem;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

.section:nth-child(even) {
  background-color: #fafafa;
}

.section h2 {
  color: #2c3e50;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.section p {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.section strong {
  color: lime;
  font-weight: 700;
}

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid lime;
}

.card h3 {
  color: #2c3e50;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
}

.card p {
  color: #2c3e50;
  font-size: 18px;
  margin-bottom: 1rem;
}

.card i {
  color: lime;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Lists styling */
.content ul,
.content ol {
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.content ul li,
.content ol li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.6;
  color: #2c3e50;
}

.content ul li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 12px;
  background-color: lime;
  border-radius: 50%;
  display: block !important;
}

.content ol {
  counter-reset: list-counter;
}

.content ol li::before {
  content: counter(list-counter) !important;
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: lime;
  color: #2c3e50;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Table styles */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.table {
  width: 100%;
  background-color: #ffffff;
  font-size: 18px;
}

.table thead {
  background-color: gainsboro;
}

.table thead th {
  color: #2c3e50;
  font-weight: 700;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid lime;
}

.table tbody td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
  color: #2c3e50;
}

.table tbody tr:hover {
  background-color: #f5f5f5;
}

/* Images */
picture img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}

/* FAQ section */
.faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid lime;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item strong {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background-color: gainsboro !important;
  padding: 3rem 1.5rem 2rem !important;
  margin-top: 3rem;
}

.footer h3 {
  color: #2c3e50;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none !important;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul li::before,
.footer ul li::after {
  display: none !important;
}

.footer a {
  color: #2c3e50 !important;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
}

.footer a:hover {
  color: lime !important;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #c0c0c0;
  text-align: center;
  color: #2c3e50;
  font-size: 16px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 2rem !important;
  }

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

  .section h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 16px;
  }

  .section p,
  .card p,
  .content li {
    font-size: 16px;
  }

  .table {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem !important;
  }

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

  .section h3 {
    font-size: 1.1rem;
  }
}

/* Utility classes */
.has-text-centered {
  text-align: center !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}
