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

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

/* Navigation and Footer - NO markers or pseudo elements */
nav ul, nav ol, footer ul, footer ol {
  list-style: none !important;
}

nav ul li:before, nav ol li:before, footer ul li:before, footer ol li:before {
  display: none !important;
  content: none !important;
}

nav ul li:after, nav ol li:after, footer ul li:after, footer ol li:after {
  display: none !important;
  content: none !important;
}

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

/* Content Lists - Custom styled with fuchsia plus markers */
.content-section ul li,
.content-section ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.7;
}

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

.content-section ul li:before {
  content: '+';
  position: absolute;
  left: 0;
  color: fuchsia;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7;
}

/* Headers */
h1 {
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 24px !important;
  color: #1f2937 !important;
}

h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-top: 48px !important;
  margin-bottom: 20px !important;
  color: #1f2937 !important;
}

h3 {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-top: 32px !important;
  margin-bottom: 16px !important;
  color: #1f2937 !important;
}

/* Paragraphs */
p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #374151;
}

/* Hero Section */
.hero-section {
  background-color: royalblue !important;
  color: #ffffff !important;
  padding: 80px 20px !important;
  text-align: center !important;
}

.hero-section h1 {
  color: #ffffff !important;
  font-size: 48px !important;
  margin-bottom: 24px !important;
}

.hero-section p {
  color: #ffffff !important;
  font-size: 18px !important;
  max-width: 800px !important;
  margin: 0 auto 32px auto !important;
  line-height: 1.7 !important;
}

/* Conversion Buttons */
.btn-conversion {
  display: inline-block;
  background-color: fuchsia;
  color: #ffffff;
  padding: 16px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.btn-conversion:hover {
  background-color: #c026d3;
  transform: translateY(-2px);
}

.btn-conversion-secondary {
  display: inline-block;
  background-color: royalblue;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.btn-conversion-secondary:hover {
  background-color: #3b5998;
  transform: translateY(-2px);
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: royalblue;
  font-size: 24px;
  font-weight: 700;
}

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

.navbar-menu {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-menu a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: royalblue;
}

.navbar-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: royalblue;
  cursor: pointer;
}

/* Content Sections */
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px;
}

/* Cards */
.card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tables */
.table-container {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 600px;
}

thead {
  background-color: royalblue;
  color: #ffffff;
}

th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 16px;
}

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

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

picture {
  display: block;
  margin: 24px 0;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #ffffff;
  padding: 48px 20px 24px;
  margin-top: 64px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  color: #ffffff !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
  margin-top: 0 !important;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li:before {
  display: none !important;
  content: none !important;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: fuchsia;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #374151;
  color: #9ca3af;
  font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  h1 {
    font-size: 32px !important;
  }

  h2 {
    font-size: 26px !important;
  }

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

  .hero-section {
    padding: 60px 20px !important;
  }

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

  .navbar-container {
    flex-direction: column;
    gap: 16px;
  }

  .navbar-menu {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    display: none;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-cta {
    width: 100%;
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 16px;
  }

  .content-section {
    padding: 32px 16px;
  }

  .btn-conversion,
  .btn-conversion-secondary {
    width: 100%;
    max-width: 300px;
  }

  .table-container {
    margin: 16px -16px;
    border-radius: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 24px;
}

.mt-4 {
  margin-top: 24px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
