/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

/* Navigation Bar */
nav {
  background-color: #3b4c62;
  padding: 1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
}

nav a {
  color: #ffffff;
  margin: 0 1em;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
  background-color: #ffffff;
  color: #3b4c62;
}

/* Hero Media */
.hero video,
.hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Default: show desktop, hide mobile */
.desktop-only {
  display: block !important;
}
.mobile-only {
  display: none !important;
}

/* Mobile: show mobile, hide desktop */
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

/* Page Content */
.content {
  padding: 2em;
  text-align: center;
}

/* Headings */
h1 {
  color: #3b4c62;
}

/* Buttons */
button {
  background-color: #3b4c62;
  color: #ffffff;
  border: none;
  padding: 1em 2em;
  font-size: 1em;
  cursor: pointer;
  margin-top: 1em;
  border-radius: 12px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2a3a4f;
}

/* Two-column comparison layout */
.comparison-section {
  display: flex;
  justify-content: space-between;
  gap: 2em;
  padding: 2em;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.comparison-section .column {
  flex: 1;
  min-width: 300px;
  background-color: #f5f5f5;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.comparison-section h2 {
  color: #3b4c62;
  margin-top: 0;
}

/* Side-by-side buttons, perfectly centered */
.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  flex-wrap: wrap;
  padding: 2em 0;
}

.button-row a {
  text-decoration: none;
}

.act-now{
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  align-items: center;
}

.act-now img{
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

/* Hide by default */
.mobile-header {
  display: none;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #3b4c62;
}

/* Show on screens smaller than 768px */
@media (max-width: 768px) {
  .mobile-header {
    display: block;
  }
}