.registration-section .container {
  padding-bottom: 40px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #0a3c4c;
  background-color: #f5f9fc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(10, 60, 76, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
  position: relative;
}

.logo img {
  display: block;
  max-height: 46px;
  width: auto;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(9, 153, 197, 0.2);
  background: rgba(9, 153, 197, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background-color: #0999c5;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.nav-open .menu-toggle {
  background: rgba(248, 155, 29, 0.15);
  border-color: rgba(248, 155, 29, 0.45);
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-backdrop {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
  color: #0999c5;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #f89b1d;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #e5f6fd, #ffffff);
  border-radius: 50%;
  border: 1px solid rgba(9, 153, 197, 0.2);
  overflow: hidden;
}

.support-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.login-btn,
.signup-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-btn {
  color: #0999c5;
  background: rgba(9, 153, 197, 0.1);
}

.signup-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #f89b1d, #f5aa3f);
  box-shadow: 0 8px 14px rgba(248, 155, 29, 0.25);
}

.login-btn:hover,
.login-btn:focus,
.signup-btn:hover,
.signup-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(9, 153, 197, 0.15);
}

.main-content {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, rgba(9, 153, 197, 0.05), transparent 60%);
  min-height: 50vh;
}

.hero-slider {
  margin: 0 auto 48px;
  width: min(1180px, 92%);
}

.mobile-hero-banner {
  display: none;
  margin-top: 16px;
}

.mobile-hero-banner img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(9, 153, 197, 0.12);
  display: block;
}

.slider-container {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(9, 153, 197, 0.22);
  background: #031523;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(3, 21, 35, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-control:hover,
.slider-control:focus {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.slider-control.prev {
  left: 20px;
}

.slider-control.next {
  right: 20px;
}

.chevron {
  width: 14px;
  height: 14px;
  border-top: 3px solid #0a3c4c;
  border-right: 3px solid #0a3c4c;
  transform: rotate(45deg);
}

.chevron-left {
  transform: rotate(-135deg);
}

.chevron-right {
  transform: rotate(45deg);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.dot.is-active {
  background: #f89b1d;
  transform: scale(1.2);
}

.content-placeholder {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(9, 153, 197, 0.08);
}

.content-placeholder h1 {
  font-size: 32px;
  font-weight: 700;
  color: #0999c5;
  margin-bottom: 16px;
}

.content-placeholder p {
  font-size: 18px;
  color: #0a3c4c;
}

.faq-section {
  width: 100%;
  margin-top: 48px;
}

.faq-heading {
  text-align: center;
  margin-bottom: 28px;
}

.faq-heading h2 {
  font-size: 28px;
  color: #0999c5;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-heading p {
  color: #0a3c4c;
  opacity: 0.8;
  font-size: 16px;
}

.faq-accordion {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(9, 153, 197, 0.16), rgba(9, 153, 197, 0.04));
  padding: 36px;
  box-shadow: 0 30px 60px rgba(9, 153, 197, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(248, 155, 29, 0.12), rgba(9, 153, 197, 0.08));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.faq-item.is-open::before {
  opacity: 1;
}

.faq-item.is-open {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(9, 153, 197, 0.14);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  font-size: 18px;
  color: #0a3c4c;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(9, 153, 197, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.35s ease, background 0.35s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #0999c5;
  transition: transform 0.35s ease;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-item.is-open .faq-icon {
  background: rgba(248, 155, 29, 0.18);
  transform: rotate(180deg) scale(1.05);
}

.faq-item.is-open .faq-icon::after {
  transform: scaleY(0);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.6, -0.05, 0.01, 0.99), padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  padding: 0 26px 22px;
  max-height: 320px;
}

.faq-answer-inner {
  background: rgba(9, 153, 197, 0.05);
  border-radius: 14px;
  padding: 20px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.faq-item.is-open .faq-answer-inner {
  transform: translateY(0);
  opacity: 1;
}

.faq-answer-inner p {
  font-size: 16px;
  color: #0a3c4c;
  line-height: 1.7;
}

.registration-section {
  width: 100%;
  margin-top: 60px;
  background: linear-gradient(180deg, rgba(9, 153, 197, 0.06), rgba(9, 153, 197, 0));
}

.registration-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f0f6fb;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 28px 60px rgba(9, 153, 197, 0.18);
  align-items: center;
}

.registration-banner img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 26px 50px rgba(3, 21, 35, 0.2);
}

.registration-form {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 40px rgba(9, 153, 197, 0.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.registration-heading p {
  font-size: 16px;
  color: #0999c5;
  margin-bottom: 6px;
  font-weight: 600;
}

.registration-heading h2 {
  font-size: 26px;
  color: #0a3c4c;
  font-weight: 700;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0a3c4c;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.input-group input,
.input-group select {
  background: #f4f8fc;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  color: #0a3c4c;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: rgba(9, 153, 197, 0.5);
  background: #ffffff;
}

.tab-switcher {
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  background: #f4f8fc;
  border-radius: 16px;
  padding: 6px;
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  font-size: 15px;
  color: #0a3c4c;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.tab-btn.is-active {
  background: linear-gradient(135deg, #0999c5, #0bb7e8);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(9, 153, 197, 0.25);
}

.tab-btn:hover,
.tab-btn:focus {
  background: rgba(9, 153, 197, 0.1);
  color: #0999c5;
}

.tab-btn.is-active:hover,
.tab-btn.is-active:focus {
  background: linear-gradient(135deg, #0bb7e8, #0999c5);
}

.password-field {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.toggle-password:hover,
.toggle-password:focus {
  background: rgba(9, 153, 197, 0.12);
}

.toggle-password.is-active .eye-icon {
  border-color: #f89b1d;
}

.toggle-password.is-active .eye-icon::after {
  background: #f89b1d;
}

.eye-icon {
  width: 16px;
  height: 10px;
  border-radius: 8px;
  border: 2px solid #0999c5;
  position: relative;
}

.eye-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #0999c5;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.split-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.birthdate-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #0a3c4c;
}

.terms-checkbox input {
  margin-top: 4px;
}

.terms-checkbox a {
  color: #0999c5;
  font-weight: 600;
}

.submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f89b1d, #f5aa3f);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 18px;
  padding: 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(248, 155, 29, 0.25);
}

.captcha-hint {
  font-size: 12px;
  color: rgba(10, 60, 76, 0.75);
  line-height: 1.6;
}

.captcha-hint a {
  color: #0999c5;
  font-weight: 600;
}

@media (max-width: 992px) {
  .registration-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .registration-banner {
    order: 2;
  }

  .registration-form {
    order: 1;
  }
}

@media (max-width: 768px) {
  .registration-form {
    padding: 28px;
  }

  .registration-heading h2 {
    font-size: 22px;
  }

  .split-inputs {
    grid-template-columns: 1fr;
  }

  .birthdate-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .registration-card {
    padding: 24px;
    gap: 24px;
  }

  .registration-form {
    padding: 22px;
  }

  .registration-heading h2 {
    font-size: 20px;
  }

  .birthdate-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .submit-btn {
    padding: 14px;
  }
}
.site-footer {
  background: #0099c7;
  color: #ffffff;
  padding-top: 48px;
}

.footer-top {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-menu,
.footer-info,
.footer-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.85;
}

.footer-menu a,
.footer-info a {
  display: inline-block;
  font-size: 15px;
  color: #e5f6fd;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-info a:hover,
.footer-menu a:focus,
.footer-info a:focus {
  color: #f8c46c;
}

.footer-summary {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px;
  gap: 16px;
}

.footer-logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-description h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-description p {
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.support-links a {
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.support-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #f8c46c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.support-links a:hover::after,
.support-links a:focus::after {
  transform: scaleX(1);
}

.footer-bottom {
  margin-top: 36px;
  background: rgba(0, 0, 0, 0.12);
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .main-nav ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .header-container {
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-right: 6px;
  }

  .logo {
    margin-right: auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 48px rgba(9, 153, 197, 0.18);
    padding: 18px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 5;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 12px;
  }

  .main-nav li + li {
    border-top: 1px solid rgba(9, 153, 197, 0.12);
  }

  .main-nav a {
    display: block;
    padding: 14px 12px;
    font-size: 16px;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(12px);
  }

  .mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 24, 36, 0.45);
    backdrop-filter: blur(2px);
    z-index: 4;
  }

  .site-header.nav-open .mobile-nav-backdrop {
    display: block;
  }

  .header-actions {
    margin-left: auto;
    gap: 12px;
    display: flex;
  }

  .header-actions a {
    text-align: center;
    justify-content: center;
  }

  .support-link {
    display: none;
  }

  .logo img {
    max-height: 44px;
  }

  .content-placeholder {
    padding: 36px 28px;
  }

  .slider-control {
    width: 46px;
    height: 46px;
  }

  .slider-control.prev {
    left: 12px;
  }

  .slider-control.next {
    right: 12px;
  }

  .slider-dots {
    bottom: 14px;
  }

  .footer-summary {
    padding: 20px;
  }

  .faq-accordion {
    padding: 28px;
  }
}

@media (max-width: 540px) {
  .header-container {
    justify-content: space-between;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .main-nav {
    border-radius: 16px;
    padding: 16px 0;
  }

  .header-actions {
    gap: 10px;
  }

  .login-btn,
  .signup-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .content-placeholder h1 {
    font-size: 26px;
  }

  .content-placeholder p {
    font-size: 16px;
  }

  .slider-control {
    display: none;
  }

  .slider-dots {
    bottom: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-menu,
  .footer-info {
    display: none;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }

  .faq-item.is-open .faq-answer {
    padding: 0 20px 18px;
  }

  .faq-accordion {
    padding: 24px;
  }

  .mobile-hero-banner {
    display: block;
  }

  .slider-container {
    display: none;
  }

  .main-content {
    padding: 36px 0 48px;
  }

  .site-footer {
    padding-top: 32px;
  }
}


/* Additional Content Styles for Bahsegel */
.content-article {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-heading {
    color: #1a1a1a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-align: center;
}

.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #007bff;
}

.intro-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-section p:last-child {
    margin-bottom: 0;
}

.content-section {
    margin: 40px 0;
    padding: 30px 0;
    border-bottom: 1px solid #e9ecef;
}

.content-section:last-child {
    border-bottom: none;
}

.section-heading {
    color: #1a1a1a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
}

.subsection-heading {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
}

.content-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.info-list li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 0 12px 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
}

.info-list li strong {
    color: #007bff;
    font-weight: 600;
}

/* Address Table Styles */
.address-table {
    margin: 30px 0;
}

.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.address-item {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.address-item.active {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.address-item.inactive {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.address-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.address-name {
    font-weight: 600;
    color: #333;
}

.address-status {
    font-size: 14px;
}

/* Step List Styles */
.step-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 25px 0;
}

.step-list li {
    counter-increment: step-counter;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    padding: 20px 0 20px 60px;
    position: relative;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.step-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-list li strong {
    color: #007bff;
    display: block;
    margin-bottom: 5px;
}

/* Highlight Section */
.highlight-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.bonus-highlight {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #ffc107;
}

.bonus-highlight p {
    margin-bottom: 15px;
}

.bonus-highlight p:last-child {
    margin-bottom: 0;
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bonus-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.game-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #007bff;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.game-card h4 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.game-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0;
}

/* Sports, Casino, Payment Lists */
.sports-list,
.casino-games-list,
.payment-methods-list,
.withdrawal-methods-list,
.feature-list,
.support-features,
.contact-list,
.security-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sports-list li,
.casino-games-list li,
.payment-methods-list li,
.withdrawal-methods-list li,
.feature-list li,
.support-features li,
.contact-list li,
.security-list li {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    padding: 15px 0 15px 30px;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.sports-list li::before,
.casino-games-list li::before,
.payment-methods-list li::before,
.withdrawal-methods-list li::before,
.feature-list li::before,
.support-features li::before,
.contact-list li::before,
.security-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: #007bff;
    font-size: 14px;
}

/* Important Note Box */
.important-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
}

.important-note h4 {
    color: #856404;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.important-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-note ul li {
    color: #856404;
    padding: 8px 0 8px 25px;
    position: relative;
}

.important-note ul li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* FAQ Section */
.faq-section .faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
}

.faq-question {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-answer {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.strengths-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin: 25px 0;
}

.strengths-box h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 3px solid #28a745;
    padding-bottom: 10px;
}

.strengths-box ul {
    list-style: none;
    padding: 0;
}

.strengths-box ul li {
    color: #555;
    font-size: 16px;
    padding: 12px 0 12px 30px;
    position: relative;
}

.strengths-box ul li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #ffc107;
    font-size: 20px;
}

.strengths-box ul li strong {
    color: #28a745;
    font-weight: 600;
}

/* Footer Styles */
.footer-info {
    grid-column: span 1;
}

.age-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-article {
        padding: 25px 20px;
    }

    .main-heading {
        font-size: 24px;
    }

    .section-heading {
        font-size: 22px;
    }

    .subsection-heading {
        font-size: 18px;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .step-list li {
        padding-left: 55px;
    }
}

@media (max-width: 480px) {
    .content-article {
        padding: 20px 15px;
    }

    .main-heading {
        font-size: 20px;
    }

    .intro-section {
        padding: 20px;
    }

    .section-heading {
        font-size: 20px;
    }

    .highlight-section,
    .conclusion-section {
        padding: 25px 20px;
    }
}