@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css');

:root {
  --primary-color: #C50102;
  --secondary-color: #0a0a0a;
  --third-color: #1a1a1a;
  --accent-color: #FF0000;
  --accent-gold: #FFD700;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #888888;
  --gradient-primary: linear-gradient(135deg, #C50102 0%, #FF0000 50%, #8B0000 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(197, 1, 2, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Ubuntu', sans-serif;
  background: var(--gradient-dark);
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url(images/background.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Navbar */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid rgba(197, 1, 2, 0.3);
  box-shadow: var(--shadow-md);
}

.navbar .logo img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar .logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-menu li a {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover {
  color: var(--accent-color);
}

.navbar-menu li a:hover::after {
  width: 80%;
}

.navbar .auth-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background: var(--text-primary);
  color: var(--secondary-color);
  border: 2px solid var(--text-primary);
}

.btn-login:hover {
  background: transparent;
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-register {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-register:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-gold);
}

.btn-secondary:hover {
  background: var(--gradient-gold);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.2rem;
}

/* Main Container */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero Section */
.hero {
  position: relative;
  background: var(--gradient-primary);
  padding: 80px 60px;
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(197, 1, 2, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* About Us Section */
.about-us {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  background: rgba(26, 26, 26, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-us-banner {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}

.about-us-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-us-banner:hover img {
  transform: scale(1.1);
}

.about-us-intro {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us-intro h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-us-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 25px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
}

.feature-list li {
  padding: 12px 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

/* Bonus Section */
.bonus {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.bonus-details {
  flex: 1;
  min-width: 300px;
  background: rgba(26, 26, 26, 0.9);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.bonus-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.bonus-intro p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.bonus-card {
  background: var(--gradient-dark);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 1, 2, 0.3);
}

.bonus-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.bonus-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.bonus-card h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.bonus-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bonus-carousel {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.bonus-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.bonus-carousel img {
  width: 100%;
  height: auto;
  display: block;
}

.bonus-banner {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.bonus-banner img {
  width: 100%;
  transition: transform 0.5s ease;
}

.bonus-banner:hover img {
  transform: scale(1.05);
}

/* Games Section */
.games {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.games-intro {
  text-align: center;
  margin-bottom: 50px;
}

.games-intro h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.games-intro p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.game-card {
  background: var(--gradient-dark);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
  text-align: center;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover img {
  transform: scale(1.1);
}

.game-card h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 20px;
  margin: 0;
  font-weight: 600;
}

.game-card p {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Security Section */
.security {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.security-content {
  text-align: center;
}

.security-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.security-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.security-item {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
}

.security-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.security-item i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.security-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.security-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile App Section */
.mobile-app {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.mobile-app-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.mobile-text {
  flex: 1;
}

.mobile-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.mobile-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.mobile-features {
  list-style: none;
  margin-bottom: 30px;
}

.mobile-features li {
  padding: 15px 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-features li i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.mobile-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
}

.mobile-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.mobile-image:hover img {
  transform: scale(1.05);
}

/* RTP Section */
.rtp-section {
  background: var(--gradient-primary);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.rtp-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.rtp-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.rtp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.rtp-stat {
  background: rgba(0, 0, 0, 0.4);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Support Section */
.support {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.support-content {
  text-align: center;
}

.support-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.support-content > p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.support-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.support-method {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
}

.support-method:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.support-method i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.support-method h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.support-method p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* Payments Section */
.payments {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.payments-content {
  text-align: center;
}

.payments-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.payments-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.payment-item {
  background: var(--gradient-dark);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.payment-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.payment-item i {
  font-size: 3rem;
  color: var(--accent-color);
}

.payment-item span {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Tools Section */
.tools {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.tools-content {
  text-align: center;
}

.tools-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.tools-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.tool-item {
  background: var(--gradient-dark);
  padding: 40px 30px;
  border-radius: 15px;
  border: 2px solid rgba(197, 1, 2, 0.3);
  transition: all 0.3s ease;
}

.tool-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.tool-item i {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.tool-item h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.tool-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* FAQ Section */
.faq {
  background: rgba(26, 26, 26, 0.9);
  padding: 60px 50px;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-md);
}

.faq h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background: var(--gradient-dark);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(197, 1, 2, 0.2);
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
}

.faq-item.active p {
  max-height: 500px;
  opacity: 1;
  margin-top: 15px;
}

/* CTA Section */
.cta {
  background: var(--gradient-primary);
  padding: 80px 60px;
  border-radius: 20px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-content h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Footer */
.footer {
  background: rgba(10, 10, 10, 0.95);
  padding: 60px 20px 40px;
  margin-top: 60px;
  border-top: 2px solid rgba(197, 1, 2, 0.3);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  background: rgba(197, 1, 2, 0.1);
}

.footer-copy {
  text-align: center;
}

.footer-copy p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--accent-color);
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 40px;
  }

  main {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1024px) {
  .about-us {
    flex-direction: column;
  }

  .about-us-banner {
    max-width: 100%;
  }

  .about-us-intro {
    padding: 40px;
  }

  .mobile-app-content {
    flex-direction: column;
  }

  .bonus {
    flex-direction: column;
  }

  .bonus-carousel {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .navbar-menu {
    flex-direction: row;
    gap: 15px;
  }

  .navbar .auth-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 50px 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-us-intro,
  .bonus-details,
  .games,
  .security,
  .mobile-app,
  .rtp-section,
  .support,
  .payments,
  .tools,
  .faq,
  .cta {
    padding: 40px 30px;
  }

  .about-us-intro h2,
  .games-intro h3,
  .security-content h3,
  .mobile-text h3,
  .rtp-content h3,
  .support-content h3,
  .payments-content h3,
  .tools-content h3,
  .faq h3 {
    font-size: 2rem;
  }

  .cta-content h3 {
    font-size: 2.2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid,
  .security-features,
  .support-methods,
  .payment-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .rtp-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .about-us-intro,
  .bonus-details,
  .games,
  .security,
  .mobile-app,
  .rtp-section,
  .support,
  .payments,
  .tools,
  .faq,
  .cta {
    padding: 30px 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 1.1rem;
  }
}
