/* Modern minimalist styles */
:root {
  --primary: #3a86ff;
  --primary-dark: #2667d4;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --border: #eaeaea;
  --success: #4cb090;
  --warning: #ff9f1c;
  --danger: #e63946;
  --radius: 8px;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: all 0.2s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-light);
  padding: 2rem 1rem;
}

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

/* Typography */
h1, h3, h4, h5 {
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

small {
  font-size: 0.85rem;
  color: var(--text-light);
}

.text-center {
  text-align: center;
}

/* Card */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
  border: none;
  transition: var(--transition);
}

.card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.07);
}

.card-body {
  padding: 1.5rem;
}

.card-header {
  padding: 1.2rem 1.5rem;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Form elements */
.input-group {
  display: flex;
  margin-bottom: 0;
}

.form-control {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.btn {
  padding: 0.8rem 1.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

/* Alerts */
.alert {
  padding: 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: none;
}

.alert-danger {
  background-color: rgba(230, 57, 70, 0.1);
  color: var(--danger);
}

.alert-success {
  background-color: rgba(76, 176, 144, 0.1);
  color: var(--success);
}

.alert-warning {
  background-color: rgba(255, 159, 28, 0.1);
  color: var(--warning);
}

#results {
  margin: 0 auto;
  max-width: 800px;
}

/* Results section */
.domain-card {
  margin-bottom: 1.5rem;
}

.request-list {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}

.request-list::-webkit-scrollbar {
  width: 6px;
}

.request-list::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}

.request-list::-webkit-scrollbar-thumb {
  background-color: #d1d5db;
  border-radius: 10px;
}

.list-group {
  list-style: none;
}

.list-group-item {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.list-group-item:hover {
  background-color: var(--bg-light);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  border-radius: 20px;
  margin-right: 0.5rem;
  background-color: var(--primary);
  color: white;
}

.text-muted {
  color: var(--text-light);
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

/* Utility classes */
.mb-0 { margin-bottom: 0; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.d-block { display: block; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Search container */
.search-container {
  margin-bottom: 2.5rem;
}

.domain-input-wrapper {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  overflow: hidden;
}

.domain-input-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
  border-color: var(--primary);
}

.domain-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  font-size: 1rem;
  background: transparent;
  outline: none;
  color: var(--text);
}

.domain-input::placeholder {
  color: #9ca3af;
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  min-width: 120px;
}

.search-button svg {
  flex-shrink: 0;
}

.search-button:hover {
  background-color: var(--primary-dark);
}

/* Mobile adjustments for search button */
@media (max-width: 576px) {
  .search-button {
    min-width: auto;
    padding: 0 1rem;
  }
  
  .search-button span {
    font-size: 0.9rem;
  }
  
  .domain-input {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
  }
  
  /* Make the overall input wrapper better on small screens */
  .domain-input-wrapper {
    max-width: 100%;
  }
}

/* For very small screens, stack the icon and text vertically */
@media (max-width: 360px) {
  .search-button {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
  }
  
  .search-button svg {
    margin-bottom: 0.1rem;
  }
}

/* Add these styles for the navigation menu */

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary);
  gap: 0.5rem;
}

.logo svg {
  stroke: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

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

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

/* Main content adjustment to accommodate fixed header */
.main-content {
  margin-top: 5rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 0.5rem 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    display: block;
    padding: 0.7rem 0;
  }
  
  .nav-link.active::after {
    display: none;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Additional responsive adjustments */
@media (max-width: 576px) {
  .nav-container {
    padding: 1rem;
  }
  
  .logo span {
    font-size: 1rem;
  }
}

/* Language switcher styles */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  position: relative;
}

.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  height: 32px;
}

.lang-btn:hover {
  background-color: var(--bg);
  border-color: var(--primary);
  color: var(--primary);
}

/* Restore missing language menu styles */
.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 120px;
  background-color: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
  z-index: 1002;
}

.lang-dropdown.active .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.lang-menu a:hover {
  background-color: var(--bg-light);
  color: var(--primary);
}

.lang-menu a.active {
  color: var(--primary);
  font-weight: 500;
  background-color: rgba(58, 134, 255, 0.05);
}

/* Flag styles */
.flag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.flag-svg {
  width: 1.5rem;
  height: 1rem;
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0,0,0,0.3);
  display: block;
}

.lang-btn .flag-icon {
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-item {
    height: auto;
  }
  
  .nav-link {
    height: auto;
  }
  
  .lang-switcher {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .lang-btn {
    width: 100%;
    justify-content: space-between;
    height: auto;
    padding: 0.7rem 1rem;
  }
  
  .lang-menu {
    position: static;
    box-shadow: none;
    border: none;
    margin-top: 0.5rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .lang-dropdown.active .lang-menu {
    display: block;
  }
  
  .lang-menu a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
  }
  
  .lang-menu a:last-child {
    border-bottom: none;
  }
}

/* Company recommendation section */
.companies-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.company-table-container {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: var(--bg);
  border: 1px solid rgba(234, 234, 234, 0.5);
  transition: all 0.3s ease;
}

.company-table-container:hover {
  box-shadow: 0 15px 35px rgba(58, 134, 255, 0.08);
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  overflow: hidden;
}

.company-table th {
  text-align: left;
  padding: 1.2rem 1.8rem;
  background-color: rgba(248, 249, 250, 0.7);
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  position: relative;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.company-table td {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  transition: all 0.2s ease;
}

.company-table tbody tr {
  transition: transform 0.25s ease, background-color 0.25s ease;
  position: relative;
  z-index: 1;
}

.company-table tbody tr:hover {
  background-color: rgba(58, 134, 255, 0.02);
  transform: translateY(-2px);
  z-index: 2;
}

.company-table tbody tr:hover td {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.02);
}

.company-table tbody tr:last-child td {
  border-bottom: none;
}

/* Modern rank badges */
.rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.rank::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
  z-index: 1;
}

.rank-1 {
  background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
}

.rank-2 {
  background: linear-gradient(135deg, #C0C0C0 0%, #A0A0A0 100%);
}

.rank-3 {
  background: linear-gradient(135deg, #CD7F32 0%, #B06728 100%);
}

/* Modern link style */
.company-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  background-color: rgba(58, 134, 255, 0.05);
}

.company-link:hover {
  background-color: rgba(58, 134, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(58, 134, 255, 0.1);
}

/* Updated section heading */
.companies-section h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.companies-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(58, 134, 255, 0.3) 100%);
  border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .company-table th,
  .company-table td {
    padding: 1rem 1.2rem;
  }
  
  .rank {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
}

@media (max-width: 576px) {
  .company-table {
    font-size: 0.85rem;
  }
  
  .company-table th,
  .company-table td {
    padding: 0.8rem 1rem;
  }
  
  .rank {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }
}

/* Popup styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: var(--bg);
  border-radius: 12px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease;
}

.popup-close:hover {
  color: rgba(255, 255, 255, 0.85);
}

.popup-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.popup-header h3 {
  color: white;
  margin: 0;
  font-size: 1.4rem;
}

.popup-body {
  padding: 1.5rem;
}

.popup-body p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.offer-features {
  margin: 1.5rem 0;
}

.offer-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.offer-feature svg {
  color: var(--success);
  margin-right: 10px;
  flex-shrink: 0;
}

.offer-form {
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#offer-email {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

#offer-email:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
  outline: none;
}

.offer-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.offer-btn:hover {
  box-shadow: 0 4px 12px rgba(58, 134, 255, 0.2);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-light);
  margin-top: 1rem;
}

@media (max-width: 576px) {
  .popup-content {
    width: 95%;
  }
  
  .popup-header h3 {
    font-size: 1.2rem;
  }
  
  .popup-body p {
    font-size: 1rem;
  }
}

/* Modern footer styles */
.modern-footer {
  background-color: var(--bg);
  margin-top: 5rem;
  padding: 0;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo svg {
  stroke: var(--primary);
  margin-right: 0.5rem;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--primary);
}

.footer-tagline {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.footer-links-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.footer-links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-column li {
  margin-bottom: 0.8rem;
}

.footer-links-column a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-column a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-light);
  background-color: var(--bg-light);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  text-align: right;
}

.copyright p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.85rem;
}

.copyright small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-light);
  font-size: 0.75rem;
  opacity: 0.8;
}

/* Responsive footer */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .copyright {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-tagline {
    max-width: 100%;
  }
  
  .social-icons {
    justify-content: center;
  }
}

/* How it works section */
.how-it-works {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 1rem;
  background-color: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

.step h4 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 260px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .steps-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Make How it works section wider on desktop */
@media (min-width: 992px) {
  .how-it-works {
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2.5rem;
  }
  
  .steps-container {
    gap: 3rem;
  }
  
  .step-icon {
    width: 72px;
    height: 72px;
  }
  
  .step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }
  
  .step p {
    font-size: 1rem;
    max-width: 280px;
  }
}

/* Updated SEO Content Styles for a more modern, simplistic look */
.seo-content {
  margin-top: 4rem;
}

@media (min-width: 992px) {
  .seo-content,
  .seo-section,
  .faq-section,
  .cta-section {
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.seo-section {
  margin-bottom: 5rem;
}

.seo-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
  position: relative;
}

/* Simplified heading style without decorative elements */
.seo-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* Fix for the seo-grid to ensure items fit in one row */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Force exactly 3 columns */
  gap: 2rem;
  margin-top: 2rem;
}

/* Keep responsive behavior for smaller screens */
@media (max-width: 992px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
  }
}

@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr; /* Stack vertically on mobile */
    gap: 1.5rem;
  }
}

.seo-card {
  background-color: var(--bg);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  padding: 2.5rem 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(234, 234, 234, 0.4);
}

.seo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.seo-card-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(58, 134, 255, 0.08);
  border-radius: 16px;
  margin-bottom: 1.8rem;
  color: var(--primary);
}

.seo-card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.seo-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Modernized issue list */
.issue-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.issue-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--bg);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  padding: 1.8rem;
  transition: all 0.25s ease;
  border: 1px solid rgba(234, 234, 234, 0.4);
}

.issue-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.issue-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: rgba(58, 134, 255, 0.1);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 600;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.issue-content h4 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.issue-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Simplified CTA section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  padding: 4rem 2rem;
  margin: 6rem auto;
  text-align: center;
  color: white;
  box-shadow: 0 15px 30px rgba(58, 134, 255, 0.15);
}

.cta-content h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.scroll-to-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: white;
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 1rem 1.8rem;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Clean, minimalist FAQ section */
.faq-section {
  margin-bottom: 6rem;
}

.faq-section h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 600;
  position: relative;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 2px;
}

.faq-container {
  margin-top: 3rem;
}

.faq-item {
  background-color: var(--bg);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(234, 234, 234, 0.4);
  transition: all 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(58, 134, 255, 0.02);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.faq-icon {
  transition: transform 0.3s ease;
  background-color: rgba(58, 134, 255, 0.08);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background-color: var(--primary);
  color: white;
}

.faq-answer {
  padding: 0 1.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.8rem 1.8rem;
  max-height: 400px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .issue-list {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .seo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .issue-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .issue-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
}

/* Pricing Card Section */
.pricing-card-section {
  margin: 5rem auto;
  padding: 0 1rem;
  max-width: 900px;
}

.pricing-card {
  background-color: var(--bg);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(234, 234, 234, 0.6);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  padding: 2.5rem 2.5rem 1.5rem;
  text-align: center;
}

.pricing-header h2 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

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

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 1.5rem 0 3rem;
  color: var(--primary);
}

.currency {
  font-size: 3rem;
  font-weight: 600;
  margin-right: 6px;
  position: relative;
  top: -10px;
}

.amount {
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.period {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-left: 10px;
  align-self: center;
}

.pricing-features {
  padding: 0 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
}

.pricing-feature svg {
  color: var(--success);
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-top: 1px solid rgba(234, 234, 234, 0.8);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 1.3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg);
  font-size: 1rem;
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
  outline: none;
}

.submit-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  margin-top: 1rem;
}

.submit-btn:hover {
  box-shadow: 0 4px 12px rgba(58, 134, 255, 0.25);
  transform: translateY(-2px);
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.2rem;
}

/* Responsive adjustments for pricing card */
@media (max-width: 768px) {
  .pricing-features {
    grid-template-columns: 1fr;
    padding: 0 1.5rem 1.5rem;
  }
  
  .pricing-header,
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Form success message */
.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success svg {
  color: var(--success);
  margin-bottom: 1.5rem;
}

.form-success h3 {
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-light);
}

/* Checkbox styling */
.checkbox-field {
  margin: 1.5rem 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  user-select: none;
  color: var(--text-light);
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
  border-color: var(--primary);
}

.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Updated logo styles to make it a clickable link */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.logo-link:hover {
  opacity: 0.9;
}

.logo-link svg {
  margin-right: 0.5rem;
  color: var(--primary);
}

.logo-link span {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Legal pages (Impressum, Datenschutz) */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

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

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

.legal-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-section strong {
  font-weight: 600;
}

.footer {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-links {
    margin-bottom: 0.5rem;
  }
} 