/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* Custom color variables */
:root {
  --primary-color: forestgreen;
  --accent-color: magenta;
  --text-color: #2c3e50;
  --bg-light: #f8f9fa;
}

/* Navigation styles */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem 0 !important;
}

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

.navbar-brand .logo {
  width: 40px;
  height: 40px;
}

.navbar-brand .brand-name {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.navbar-item {
  list-style: none !important;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color) !important;
  transition: color 0.3s;
}

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

.navbar-item:hover {
  color: var(--primary-color) !important;
}

.navbar-burger {
  color: var(--primary-color);
}

/* Hero section */
.hero {
  position: relative !important;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
  padding: 6rem 1.5rem !important;
  overflow: hidden !important;
  min-height: 500px !important;
}

.hero::before {
  content: '' !important;
  position: absolute !important;
  top: -50px !important;
  right: -50px !important;
  width: 300px !important;
  height: 300px !important;
  background: var(--primary-color) !important;
  opacity: 0.1 !important;
  border-radius: 50% !important;
  z-index: 0 !important;
}

.hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: -100px !important;
  left: -100px !important;
  width: 400px !important;
  height: 400px !important;
  background: var(--accent-color) !important;
  opacity: 0.08 !important;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% !important;
  z-index: 0 !important;
}

.hero .hero-body {
  position: relative !important;
  z-index: 1 !important;
}

.hero h1 {
  font-size: 48px !important;
  font-weight: 800 !important;
  color: var(--text-color) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.2 !important;
}

.hero .hero-description {
  font-size: 20px !important;
  color: #555555 !important;
  margin-bottom: 2rem !important;
  max-width: 800px !important;
}

.hero .button {
  font-size: 18px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  background-color: var(--primary-color) !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s !important;
  display: inline-block !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.hero .button:hover {
  background-color: #1a6b1a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3) !important;
}

/* Section styles */
.section {
  padding: 4rem 1.5rem;
}

.section h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--text-color) !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 3px solid var(--primary-color) !important;
}

.section h3 {
  font-size: 26px !important;
  font-weight: 600 !important;
  color: var(--text-color) !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.section img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Card styles */
.card {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.card-content {
  padding: 2rem;
}

/* List styles - reset defaults */
ul, ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

ul li, ol li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.6;
  list-style: none !important;
}

ul li::marker,
ol li::marker {
  display: none !important;
  content: none !important;
}

/* Custom square markers for ul */
ul li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 8px !important;
  width: 12px !important;
  height: 12px !important;
  background-color: var(--accent-color) !important;
  border-radius: 2px !important;
}

/* Custom numbered markers for ol */
ol {
  counter-reset: custom-counter;
}

ol li {
  counter-increment: custom-counter;
}

ol li::before {
  content: counter(custom-counter) !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  width: 24px !important;
  height: 24px !important;
  background-color: var(--accent-color) !important;
  color: white !important;
  border-radius: 2px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}

/* Remove markers from nav and footer */
.navbar-menu,
.navbar-menu li,
.navbar-start,
.navbar-start li,
.navbar-end,
.navbar-end li,
.footer ul,
.footer ul li,
.footer ol,
.footer ol li {
  list-style: none !important;
}

.navbar-menu::before,
.navbar-menu::after,
.navbar-menu li::before,
.navbar-menu li::after,
.navbar-menu li::marker,
.navbar-start::before,
.navbar-start::after,
.navbar-start li::before,
.navbar-start li::after,
.navbar-start li::marker,
.navbar-end::before,
.navbar-end::after,
.navbar-end li::before,
.navbar-end li::after,
.navbar-end li::marker,
.footer ul::before,
.footer ul::after,
.footer ul li::before,
.footer ul li::after,
.footer ul li::marker,
.footer ol::before,
.footer ol::after,
.footer ol li::before,
.footer ol li::after,
.footer ol li::marker {
  display: none !important;
  content: none !important;
}

.footer ul li,
.footer ol li {
  padding-left: 0 !important;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  font-size: 18px;
}

thead {
  background-color: var(--primary-color);
  color: white;
}

thead th {
  padding: 1rem;
  font-weight: 600;
  text-align: left;
  font-size: 18px;
}

tbody tr {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.2s;
}

tbody tr:hover {
  background-color: #f8f9fa;
}

tbody td {
  padding: 1rem;
  font-size: 18px;
}

/* Content images */
picture {
  display: block;
  margin: 2rem 0;
}

picture img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FAQ section */
.faq-item {
  margin-bottom: 2rem;
}

.faq-item strong {
  display: block;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

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

.footer h4 {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  color: white !important;
}

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

.footer ul li {
  margin-bottom: 0.5rem !important;
  padding-left: 0 !important;
}

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

.footer a:hover {
  color: var(--accent-color) !important;
}

.footer .copyright {
  text-align: center !important;
  margin-top: 2rem !important;
  padding-top: 2rem !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  color: #b0b0b0 !important;
  font-size: 16px !important;
}

/* Icon styles */
.icon {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 18px;
}

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

  .section h2 {
    font-size: 32px !important;
  }

  .section h3 {
    font-size: 24px !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 17px;
  }

  .hero {
    padding: 4rem 1.5rem !important;
  }

  .hero h1 {
    font-size: 32px !important;
  }

  .hero .hero-description {
    font-size: 18px !important;
  }

  .section h2 {
    font-size: 28px !important;
  }

  .section h3 {
    font-size: 22px !important;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  table {
    font-size: 16px;
  }

  thead th,
  tbody td {
    padding: 0.75rem;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px !important;
  }

  .hero .hero-description {
    font-size: 17px !important;
  }

  .section h2 {
    font-size: 24px !important;
  }

  .section h3 {
    font-size: 20px !important;
  }
}
