:root {
  --background: #ffffff;
  --foreground: #374151;
  --card: #f0fdf4;
  --card-foreground: #374151;
  --primary: #15803d;
  --primary-foreground: #ffffff;
  --secondary: #84cc16;
  --secondary-foreground: #374151;
  --muted: #f0fdf4;
  --muted-foreground: #374151;
  --accent: #84cc16;
  --accent-foreground: #374151;
  --border: #d1d5db;
  --input: #f9fafb;
  --ring: #15803d;
  --radius: 0.5rem;
}

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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(21, 128, 61, 0.15);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #166534;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #65a30d;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Header Styles */
header {
  background: var(--background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-image {
  height: 70px;
  width: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.logo-text {
  font-family: "Work Sans", sans-serif;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(21, 128, 61, 0.1);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-links a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  height: 100vh;
  background-image: url("images/1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 128, 61, 0.7) 0%,
    rgba(132, 204, 22, 0.7) 100%
  );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  margin-top: 2.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  font-weight: 500;
  line-height: 1.7;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: block;
}

/* Footer */
footer {
  background: var(--muted);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  height: 70px;
  width: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--input);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(21, 128, 61, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
  header {
    padding-block: 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
    min-width: 200px;
    text-align: center;
  }

  .nav-links a:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
  }

  .nav-links a:active {
    transform: scale(0.95);
  }

  .logo-image {
    height: 32px;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  .footer-logo {
    height: 26px;
  }

  .hero {
    background-attachment: scroll;
    padding: 100px 0 60px;
  }

  .trailer-container {
    margin-top: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-image {
    height: 300px;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    margin-top: 2rem;
  }

  .hero-btn-large {
    font-size: 1rem;
    padding: 12px 24px;
    margin-bottom: 1rem;
    margin-right: 0;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-toggle {
    width: 26px;
    height: 26px;
  }

  .hamburger-line {
    height: 2px;
  }

  .logo-image {
    height: 28px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .footer-logo {
    height: 24px;
  }

  .logo {
    gap: 0.5rem;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero-image {
    height: 250px;
  }

  .hero-btn-large {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .trailer-video {
    height: 300px;
  }

  .trailer-video::-webkit-media-controls {
    display: none;
  }

  .trailer-overlay {
    padding: 1rem;
  }

  .trailer-play-btn {
    width: 60px;
    height: 60px;
  }

  .trailer-play-icon {
    font-size: 1.5rem;
  }

  .trailer-play-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trailer-video {
    height: 250px;
  }

  .trailer-play-btn {
    width: 50px;
    height: 50px;
  }

  .trailer-play-icon {
    font-size: 1.2rem;
  }

  .trailer-play-text {
    font-size: 0.9rem;
  }

  .trailer-video::-webkit-media-controls {
    display: none;
  }
}

/* Screenshot Gallery */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.screenshot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.screenshot:hover {
  transform: scale(1.05);
}

.screenshot img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Review Cards */
.review-card {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.review-stars {
  color: #fbbf24;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary);
}

/* FAQ Styles */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Statistics */
.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

/* Additional styles for inline replacements */
.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-accept-btn {
  margin-right: 1rem;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

.hero-buttons {
  margin-top: 2.5rem;
}

.hero-btn-large {
  font-size: 1.125rem;
  padding: 15px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

.game-overview-grid {
  margin-top: 3rem;
}

.game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.game-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.features-background {
  background: var(--muted);
}

.features-grid {
  margin-top: 3rem;
}

.feature-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.mechanics-grid {
  margin-top: 3rem;
}

.mechanics-title {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.mechanics-list {
  list-style: none;
  padding: 0;
}

.mechanics-item {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.mechanics-arrow {
  position: absolute;
  left: 0;
  color: var(--accent);
}

.audience-background {
  background: var(--muted);
}

.audience-grid {
  margin-top: 3rem;
}

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

.audience-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.audience-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

.stats-grid {
  margin-top: 3rem;
}

.screenshots-background {
  background: var(--muted);
}

.trailer-container {
  text-align: center;
  margin-top: 3rem;
}

.trailer-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.trailer-video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trailer-video::-webkit-media-controls {
  border-radius: var(--radius);
}

.trailer-video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.8);
}

.trailer-video::-webkit-media-controls-play-button {
  background-color: var(--primary);
  border-radius: 50%;
}

.trailer-video::-webkit-media-controls-timeline {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.trailer-video::-webkit-media-controls-current-time-display,
.trailer-video::-webkit-media-controls-time-remaining-display {
  color: white;
  font-weight: 600;
}

.trailer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 128, 61, 0.8) 0%,
    rgba(132, 204, 22, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(2px);
}

.trailer-overlay:hover {
  background: linear-gradient(
    135deg,
    rgba(21, 128, 61, 0.9) 0%,
    rgba(132, 204, 22, 0.8) 100%
  );
  transform: scale(1.02);
}

.trailer-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

.trailer-play-btn {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.trailer-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.8);
}

.trailer-play-icon {
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
}

.trailer-play-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.trailer-caption {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.reviews-background {
  background: var(--muted);
}

.reviews-grid {
  margin-top: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.download-section {
  background: var(--primary);
  color: white;
}

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

.download-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.download-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  margin-bottom: 2rem;
}

.download-btn-large {
  font-size: 1.25rem;
  padding: 18px 36px;
  margin: 0 1rem 1rem;
}

.download-features {
  font-size: 0.9rem;
  opacity: 0.8;
}

.contact-grid {
  margin-top: 3rem;
}

.contact-title {
  color: var(--primary);
  margin-bottom: 2rem;
}

.contact-section {
  margin-bottom: 2rem;
}

.contact-email {
  color: var(--primary);
  font-size: 1.125rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-follow-title {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.contact-social-link {
  color: var(--primary);
  text-decoration: none;
}

.newsletter-description {
  margin-bottom: 2rem;
}

.checkbox-wrapper {
  margin-right: 0.5rem;
  width: fit-content !important;
}

.submit-btn-full {
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn-full.success {
  background: var(--accent) !important;
  color: white;
}

.submit-btn-full:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Modal Window Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: modalFadeIn 0.3s ease-out;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

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

.modal-content p {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-close-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--primary-dark, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3);
}

.modal-close-btn:active {
  transform: translateY(0);
}

/* Modal animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Success modal styles */
.modal.success .modal-icon {
  color: var(--accent);
}

.modal.error .modal-icon {
  color: #ef4444;
}

/* Mobile responsive */
@media (max-width: 480px) {
  .modal-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .modal-icon {
    font-size: 2.5rem;
  }

  .modal-content h3 {
    font-size: 1.25rem;
  }
}

.footer-copyright {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.footer-last-updated {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

/* Security page styles */
.security-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.security-title {
  font-family: "Work Sans", sans-serif;
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.security-subtitle {
  font-family: "Work Sans", sans-serif;
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.security-feature {
  background-color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1rem 0;
}

.security-feature h3 {
  margin-top: 0;
}
