:root {
  --primary-color: #e91e63;
  --secondary-color: #9c27b0;
  --accent-color: #ff6b35;
  --dark-bg: #1a0d2e;
  --darker-bg: #0f0519;
  --text-light: #ffffff;
  --text-muted: #b8a9c9;
  --gradient-primary: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
  --gradient-secondary: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f44336 100%);
}

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

body {
  font-family: "Maven Pro", sans-serif;
  background: var(--darker-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(233, 30, 99, 0.1) 0%, rgba(15, 5, 25, 0.9) 70%);
  pointer-events: none;
  z-index: -1;
}

.navbar {
  background: rgba(26, 13, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.2);
  padding: 1rem 0;
}

.navbar-brand__logo {
  height: 40px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--text-light);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--text-light);
  color: var(--text-light);
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.hero {
  padding: 120px 0 80px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero__features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.hero__features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
}

.hero__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
  z-index: 2;
}

.welcome {
  padding: 80px 0;
  background: var(--dark-bg);
}

.welcome__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome__description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.welcome__features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.welcome__features li {
  padding: 0.75rem 0;
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
}

.welcome__features li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.welcome__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.features {
  padding: 80px 0;
  background: var(--darker-bg);
}

.features__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.features__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.feature-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
  border-color: rgba(233, 30, 99, 0.3);
}

.feature-card__image {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-card__description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.games-preview {
  padding: 80px 0;
  background: var(--dark-bg);
}

.games-preview__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.games-preview__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.game-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.3);
}

.game-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-primary);
  padding: 1.5rem;
  text-align: center;
}

.game-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.getting-started {
  padding: 80px 0;
  background: var(--darker-bg);
}

.getting-started__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
}

.getting-started__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
}

.step-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.step-card__number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.step-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-card__description {
  color: var(--text-muted);
  font-size: 1rem;
}

.getting-started__cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.getting-started__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: var(--darker-bg);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.footer__divider {
  border-color: rgba(233, 30, 99, 0.2);
  margin: 2rem 0 1rem;
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.legal-page {
  padding: 120px 0 80px;
  background: var(--dark-bg);
}

.legal-page__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-page__updated {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.legal-content {
  background: rgba(26, 13, 46, 0.3);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.legal-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.success-page {
  padding: 120px 0 80px;
  background: var(--dark-bg);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.success-content {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.967);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.age-modal-content {
  background: #4C003A;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  margin: 1rem;
}

.age-modal-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.age-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-confirm {
  background: white;
  color: #4C003A;;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.btn-deny {
  background: #dc2626;
  color: #4C003A;;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.age-error {
  margin-top: 1rem;
  border-radius: 5px;
}


.success-page__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-page__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-page {
  padding: 120px 0 80px;
  background: var(--dark-bg);
}

.contact-header {
  margin-bottom: 4rem;
}

.contact-page__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-page__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.contact-form {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 3rem;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.form-label {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background: rgba(15, 5, 25, 0.8);
  border: 1px solid rgba(233, 30, 99, 0.3);
  color: var(--text-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  background: rgba(15, 5, 25, 0.9);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
  color: var(--text-light);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-check-input {
  background-color: rgba(15, 5, 25, 0.8);
  border-color: rgba(233, 30, 99, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  color: var(--text-muted);
}

.contact-info {
  padding-left: 2rem;
}

.contact-info__item {
  margin-bottom: 2.5rem;
}

.contact-info__item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.contact-info__item p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.games-page {
  padding-top: 80px;
}

.games-hero {
  padding: 60px 0;
  background: var(--gradient-primary);
  text-align: center;
}

.games-hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.games-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.games-grid {
  padding: 80px 0;
  background: var(--dark-bg);
}

.games-grid .game-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.games-grid .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.games-grid .game-card__content {
  padding: 1.5rem;
}

.games-grid .game-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.games-grid .game-card__description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.games-grid .game-card__jackpot {
  background: var(--gradient-accent);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
}

.game-categories {
  padding: 80px 0;
  background: var(--darker-bg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.category-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.category-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.category-card__description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.category-card__count {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
}

.promotions-page {
  padding-top: 80px;
}

.promotions-hero {
  padding: 60px 0;
  background: var(--gradient-secondary);
  text-align: center;
}

.promotions-hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.promotions-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.current-promotions {
  padding: 80px 0;
  background: var(--dark-bg);
}

.promotion-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
  position: relative;
}

.promotion-card--featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.promotion-card__badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.promotion-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.promotion-card__description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promotion-card__value {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.promotion-card__expires {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.vip-benefits {
  padding: 80px 0;
  background: var(--darker-bg);
}

.benefit-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.benefit-card__icon {
  margin-bottom: 1.5rem;
}

.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.benefit-card__description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.vip-page {
  padding-top: 80px;
}

.vip-hero {
  padding: 80px 0;
  background: var(--gradient-secondary);
}

.vip-hero__title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vip-hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.vip-hero__features {
  margin-bottom: 2.5rem;
}

.vip-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.vip-feature__icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.vip-tiers {
  padding: 80px 0;
  background: var(--dark-bg);
}

.tier-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
  position: relative;
  text-align: center;
}

.tier-card--featured {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  transform: scale(1.05);
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.tier-card--featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.tier-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.tier-card__header {
  margin-bottom: 2rem;
}

.tier-card__title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.tier-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-light);
}

.tier-card__features ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.tier-card__features li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 2rem;
}

.tier-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.vip-perks {
  padding: 80px 0;
  background: var(--darker-bg);
}

.perk-card {
  background: rgba(26, 13, 46, 0.6);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.perk-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.3);
}

.perk-card__icon {
  margin-bottom: 1.5rem;
}

.perk-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.perk-card__description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(26, 13, 46, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  max-width: 400px;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-consent .btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .welcome__title,
  .features__title,
  .games-preview__title,
  .getting-started__title {
    font-size: 2rem;
  }

  .contact-info {
    padding-left: 0;
    margin-top: 3rem;
  }

  .cookie-consent {
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .tier-card--featured {
    transform: none;
  }

  .tier-card--featured:hover {
    transform: translateY(-5px);
  }

  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .step-card__number {
    font-size: 2.5rem;
  }

  .legal-content {
    padding: 2rem;
  }

  .success-content {
    padding: 3rem 2rem;
  }

  .contact-form {
    padding: 2rem;
  }
}
