main {
  min-height: 80vh;
  color:#fff;
  margin-bottom: 30px;
}
body {
  background-color:#253231;
}
.navbar .container {
  max-width: 100%;
}

@media (min-width: 769px) {
  .navbar .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}
.navbar-brand img {
  max-height: 75px;
  width: auto;
  height: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color:#fff;
}
.nav-link:hover {
  color:#d1caca;
}
.navbar-nav {
  gap: 10px;
}
@media (max-width: 768px) {
  .navbar-nav {
      gap: 0px;
  }
}
footer {
  background-color: #1b2827 !important;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  height: auto;
}

.footer-info {
  flex: 1;
}

.footer-disclaimer {
  font-weight: 600;
  color: #FFC107;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-license {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  footer,
  footer.py-4 {
    padding-bottom: 80px !important;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-logo img {
    max-height: 50px;
  }
  
  .footer-disclaimer,
  .footer-description,
  .footer-license {
    text-align: center;
  }
}
.btn-one {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: none;
  background-color: #FFC107;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border: 1px solid #FFC107;
}
.btn-two {
  background-color: #FF6B35;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
}
.btn-one:hover {
  background-color: #FFD700;
  color: #000;
  border-color: #FFD700;
}
.btn-two:hover {
  background-color: #FF8C00;
  color: #fff;
}

.breadcrumbs {
  font-size: 0.95rem;
  color: #555;
  margin: 1rem 0;
  padding: 0.5rem 1rem;
  background-color: #1c3836;
  border-radius: 0.375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs a {
  text-decoration: none;
  color: #FFC107;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
  color: #888;
}

.breadcrumbs .current {
  font-weight: 500;
  color: #fff;
}

.table {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1b2827;
  color: #ffffff;
  font-size: 16px;
  min-width: 600px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

th,
td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff; 
  background-color: #1b2827; 
}

th {
  background-color: #1c3836;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tr:nth-child(even) td {
  background-color: #253231; 
}

tr:hover td {
  background-color: #1c3836;
  transition: background-color 0.2s ease-in-out;
}

/* Tabela porównawcza – ciemny motyw, czytelny tekst (nadpisanie Bootstrap) */
.comparison-table,
.comparison-table th,
.comparison-table td {
  color: #ffffff !important;
  background-color: #1b2827 !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.comparison-table thead th {
  background-color: #1c3836 !important;
  color: #ffffff !important;
}
.comparison-table tbody tr:nth-child(even) td {
  background-color: #253231 !important;
  color: #ffffff !important;
}
.comparison-table tbody tr:hover td {
  background-color: #1c3836 !important;
  color: #ffffff !important;
}

@media (max-width: 768px) {
  table {
      font-size: 14px;
  }
}
.faq-block {
  border-top: 2px solid #1c3836;
  padding: 20px 0;
}

.faq-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  background-color: #1c3836;
  color: #fff;
  padding: 15px 20px;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.faq-question::after {
  content: "➤";
  position: absolute;
  right: 20px;
  font-size: 16px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #1b2827;
  color: #fff;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 500px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  margin:auto;
}
.d-flex {
  justify-content: center;
}
.page-btn {
  margin-top: 10px;
  margin-bottom: 10px;
}
nav.bg-light {
  background-color:#1c3836!important;
}
.dropdown-menu {
  background-color:#1a2e1a;
}
.dropdown-item {
  color:#fff!important;
}
.dropdown-item:focus, .dropdown-item:hover {
  background-color:#2a4a2a!important;
}
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5); /* необязательно, но сделает рамку светлее */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Related Block Styles */
.related-block {
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background-color: #1b2827;
  overflow: hidden;
}

.related-block summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 15px;
  background-color: #1c3836;
  position: relative;
  user-select: none;
}

.related-block summary::-webkit-details-marker {
  display: none;
}

.related-block summary::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  color: #FFC107;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.related-block[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.related-block summary h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.related-content {
  padding: 12px 15px;
  background-color: #1b2827;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.related-content a {
  display: block;
  padding: 6px 0;
  margin-bottom: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.related-content a:hover {
  color: #FFC107;
}

.related-content a:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .related-block summary {
    padding: 10px 12px;
  }
  
  .related-block summary h3 {
    font-size: 1.1rem;
  }
  
  .related-content {
    padding: 10px 12px;
  }
  
  .related-content a {
    font-size: 0.9rem;
  }
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f1f0f;
    padding: 12px 15px;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-sticky-bar .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  
  /* Добавляем отступ снизу для main, чтобы контент не перекрывался плавающим баром */
  main {
    padding-bottom: 80px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1c3836 0%, #253231 100%);
  padding: 80px 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/headerwall.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.section-bonuses,
.section-slots,
.section-live,
.section-features,
.section-reviews {
  margin-bottom: 4rem;
}

/* Review Cards (Opinie graczy) */
.review-card {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.1);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.review-author {
  font-weight: 600;
  color: #FFC107;
  font-size: 0.95rem;
}

.review-date {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.review-stars .star-filled {
  color: #FFC107;
}

.review-stars .star-empty {
  color: rgba(255, 255, 255, 0.25);
}

.review-body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* Karuzela opinii – kontrole widoczne na ciemnym tle */
.section-reviews .carousel-control-prev-icon,
.section-reviews .carousel-control-next-icon {
  filter: invert(1);
}
.section-reviews .carousel-control-prev,
.section-reviews .carousel-control-next {
  width: 3rem;
  opacity: 0.9;
}

/* Bonus Cards */
.card-bonus {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-bonus:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
  border-color: #FFC107;
}

.card-bonus-header {
  background: linear-gradient(135deg, #1c3836 0%, #253231 100%);
  padding: 1.5rem;
  border-bottom: 2px solid #FFC107;
}

.card-bonus-header h3 {
  margin: 0;
  color: #FFC107;
  font-size: 1.5rem;
  font-weight: 700;
}

.card-bonus-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bonus-value {
  font-size: 2rem;
  font-weight: 700;
  color: #FFC107;
  margin-bottom: 0.5rem;
}

.bonus-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.bonus-features li {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
}

.bonus-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFC107;
  font-weight: bold;
}

/* Slot Cards */
.card-slot {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-slot:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border-color: #FF6B35;
}

.card-slot-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-slot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.3s ease;
}

.card-slot:hover .card-slot-image img {
  transform: scale(1.1);
}

.card-slot-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-slot-body h3 {
  margin: 0 0 0.5rem 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.slot-type {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.slot-feature {
  color: #FFC107;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Live Game Cards */
.card-live {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-live:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border-color: #FF6B35;
}

.card-live-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-live-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  transition: transform 0.3s ease;
}

.card-live:hover .card-live-image img {
  transform: scale(1.1);
}

.card-live-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-live-body h3 {
  margin: 0 0 1rem 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

.card-live-body p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}

/* Feature Cards (Wypłaty + Aplikacja) */
.card-feature {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
  border-color: #FFC107;
}

.card-feature-icon {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.card-feature-body h3 {
  margin: 0 0 0.5rem 0;
  color: #FFC107;
  font-size: 1.75rem;
  font-weight: 700;
}

.card-feature-body > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.feature-list li {
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #FFC107;
  font-weight: bold;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-bonuses,
  .section-slots,
  .section-live,
  .section-features,
  .section-reviews {
    margin-bottom: 3rem;
  }
  
  .review-card {
    padding: 1rem 1.25rem;
  }
  
  .card-bonus-header,
  .card-bonus-body,
  .card-slot-body,
  .card-live-body {
    padding: 1rem;
  }
  
  .card-feature {
    padding: 1.5rem;
  }
  
  .bonus-value {
    font-size: 1.5rem;
  }
  
  .card-feature-icon {
    height: 150px;
  }
}

/* About Section */
.section-about {
  margin-bottom: 4rem;
  padding: 2rem 0;
}

.section-about p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Advantages Section */
.section-advantages {
  margin-bottom: 4rem;
}

.advantage-item {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
  border-color: #FFC107;
}

.advantage-item h3 {
  color: #FFC107;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.advantage-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Rekomendowani partnerzy */
.section-partners {
  margin-bottom: 4rem;
}

.section-partners-intro {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 720px;
  line-height: 1.65;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1199px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

.card-partner {
  background: linear-gradient(145deg, #1e312f 0%, #182a28 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card-partner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card-partner:hover {
  border-color: rgba(255, 193, 7, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.card-partner:hover::before {
  opacity: 1;
}

.card-partner h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-partner h3 a {
  color: #FFC107;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-partner h3 a:hover {
  color: #ffd54f;
}

.card-partner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.card-partner p a {
  color: #7dd3fc;
  text-decoration: none;
  border-bottom: 1px solid rgba(125, 211, 252, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.card-partner p a:hover {
  color: #FFC107;
  border-bottom-color: rgba(255, 193, 7, 0.6);
}

/* Jak zacząć (How to start) */
.section-how-start {
  margin-bottom: 4rem;
}

.how-start-step {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-start-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
  border-color: #FFC107;
}

.how-start-step-title {
  color: #FFC107;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.how-start-step p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.how-start-step a:not(.btn) {
  color: #7dd3fc;
  text-decoration: underline;
}

.how-start-step a:not(.btn):hover {
  color: #FFC107;
}

/* Dla kogo Lemon Casino */
.section-for-who {
  margin-bottom: 4rem;
}

.section-for-who-intro {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.for-who-list {
  padding-left: 0;
}

.for-who-item {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.for-who-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 6px;
  background-color: #FFC107;
  border-radius: 50%;
}

.section-for-who a {
  color: #7dd3fc;
  text-decoration: underline;
}

.section-for-who a:hover {
  color: #FFC107;
}

/* Providers Section */
.section-providers {
  margin-bottom: 4rem;
}

.provider-item {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.provider-item:hover {
  background-color: #1c3836;
  border-color: #FFC107;
  transform: translateY(-3px);
}

/* Payment Methods Section */
.section-payment-methods {
  margin-bottom: 4rem;
}

.payment-method-item {
  background-color: #1b2827;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-method-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border-color: #FF6B35;
}

.payment-method-item h3 {
  color: #FF6B35;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.payment-method-item p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* Security Section */
.section-security {
  margin-bottom: 4rem;
  padding: 2rem 0;
  background-color: #1b2827;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-security p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.security-features {
  margin-top: 2rem;
}

.security-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-features li {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.security-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFC107;
  font-weight: bold;
}

.security-features li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .section-about,
  .section-advantages,
  .section-how-start,
  .section-for-who,
  .section-providers,
  .section-payment-methods,
  .section-security {
    margin-bottom: 3rem;
  }
  
  .advantage-item,
  .payment-method-item,
  .how-start-step {
    padding: 1rem;
  }

  .card-partner {
    padding: 1.25rem;
  }
  
  .section-security {
    padding: 1.5rem;
  }
}

/* Content sections for redesigned pages */
.content-section {
  margin-bottom: 4rem;
  padding-top: 2rem;
}

.content-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.content-block {
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
}

.content-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFC107;
}

.content-block p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-block ul,
.content-block ol {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-block li {
  margin-bottom: 0.5rem;
}

.content-block a {
  color: #FFC107;
  text-decoration: none;
}

.content-block a:hover {
  color: #ffd54f;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content-section {
    margin-bottom: 3rem;
    padding-top: 1.5rem;
  }
  
  .content-section .section-title {
    font-size: 1.6rem;
  }
  
  .content-block {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}