/* Import Bulma CSS Framework */
@import url('https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css');

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

/* Import Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
}

.navbar-item img {
  background-color: white !important;
  margin-right: 10px !important;
}
/* Navigation Styles */
.navbar {
  background-color: steelblue !important;
  padding: 1rem 0 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.navbar-brand .brand-name {
  font-size: 24px;
  font-weight: 700;
  color: white !important;
  text-decoration: none;
}

.navbar-menu {
  background-color: steelblue !important;
}

.navbar-item {
  color: white !important;
  font-size: 18px;
  font-weight: 600;
  list-style: none !important;
}

.navbar-item:hover {
  background-color: rgba(255,255,255,0.1) !important;
  color: #fbbf24 !important;
}

.navbar-burger {
  color: white !important;
}

.navbar-end .navbar-item.cta-button {
  background-color: #fbbf24;
  color: #1e3a8a !important;
  border-radius: 6px;
  padding: 0.5rem 1.5rem !important;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.navbar-end .navbar-item.cta-button:hover {
  background-color: #f59e0b !important;
  transform: translateY(-2px);
}

/* Ensure no markers on navbar */
.navbar-menu ul,
.navbar-menu li,
.navbar-start,
.navbar-end {
  list-style: none !important;
}

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

/* Hero Section */
.hero {
  position: relative !important;
  background-image: url('setting-up-apple-pay-for-casino-transactions_6351859712.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 500px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4rem 1.5rem !important;
}

.hero::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg, rgba(70, 130, 180, 0.9), rgba(70, 130, 180, 0.7)) !important;
  z-index: 1 !important;
}

.hero-body {
  position: relative !important;
  z-index: 2 !important;
  text-align: center !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}

.hero-body h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  color: white !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
  line-height: 1.2 !important;
}

.hero-body .subtitle {
  font-size: 20px !important;
  color: white !important;
  margin-bottom: 2rem !important;
  line-height: 1.6 !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3) !important;
}

.hero-cta {
  display: inline-block;
  background-color: #fbbf24;
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.hero-cta:hover {
  background-color: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
  padding: 4rem 1.5rem;
  background-color: white;
  margin-bottom: 2rem;
}

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

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

/* Headings */
h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  color: steelblue !important;
  margin-bottom: 2rem !important;
  line-height: 1.2 !important;
}

h2 {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: steelblue !important;
  margin-bottom: 1.5rem !important;
  margin-top: 2rem !important;
  line-height: 1.3 !important;
}

h3 {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: steelblue !important;
  margin-bottom: 1.25rem !important;
  margin-top: 1.5rem !important;
  line-height: 1.4 !important;
}

/* Paragraphs */
p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Lists Styles */
ul, ol {
  margin-left: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
  margin-bottom: 1.5rem;
}

section ul li,
section ol li,
.content ul li,
.content ol li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  list-style: none !important;
}

section ul li::before,
.content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background-color: #fbbf24;
  transform: rotate(45deg);
}

section ol li::before,
.content ol li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: #fbbf24;
  color: steelblue;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
}

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

/* Reset markers */
ul li::marker,
ol li::marker {
  display: none !important;
  content: '' !important;
}

/* Ensure footer and navbar lists have no markers */
footer ul,
footer li,
.navbar ul,
.navbar li {
  list-style: none !important;
}

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

/* 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%;
  border-collapse: collapse;
  background-color: white;
  font-size: 18px;
}

thead {
  background-color: steelblue;
  color: white;
}

thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

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

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

tbody td strong {
  color: steelblue;
  font-weight: 700;
}

/* Card Styles */
.card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: steelblue;
}

.card .icon {
  color: #fbbf24;
  font-size: 28px;
}

/* Images */
picture {
  display: block;
  margin: 2rem auto;
}

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

/* Conversion Buttons */
.cta-button-section {
  text-align: center;
  margin: 3rem 0;
}

.cta-button-inline {
  display: inline-block;
  background-color: #fbbf24;
  color: #1e3a8a;
  font-size: 20px;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.cta-button-inline:hover {
  background-color: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #1e3a8a;
}

/* FAQ Section */
.faq-item {
  background-color: white;
  border-left: 4px solid #fbbf24;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.faq-item strong {
  color: steelblue;
  font-size: 20px;
  display: block;
  margin-bottom: 0.75rem;
}

/* Footer */
footer {
  background-color: steelblue;
  color: white;
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}

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

footer .footer-column h4 {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fbbf24 !important;
  margin-bottom: 1rem !important;
}

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

footer ul li {
  margin-bottom: 0.75rem;
  list-style: none !important;
}

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

footer a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fbbf24;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 16px;
}

/* Icon Styles */
.bi {
  color: steelblue;
}

section .bi {
  color: #fbbf24;
  margin-right: 0.5rem;
  font-size: 24px;
}

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

  h1 {
    font-size: 40px !important;
  }

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

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

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

  .hero {
    min-height: 400px !important;
    padding: 3rem 1rem !important;
  }

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

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

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

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

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

  section {
    padding: 3rem 1rem;
  }

  .hero-cta,
  .cta-button-inline {
    font-size: 18px;
    padding: 0.875rem 2rem;
  }

  .navbar-brand .brand-name {
    font-size: 20px;
  }

  .navbar-end .navbar-item.cta-button {
    margin-left: 0;
    margin-top: 0.5rem;
  }

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

  table {
    font-size: 16px;
  }

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

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

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

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

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

  .hero-cta,
  .cta-button-inline {
    font-size: 16px;
    padding: 0.75rem 1.5rem;
  }
}
