@font-face {
  font-family: 'Technique Open';
  src: url('/fonts/techniqo.woff2') format('woff2'),
    url('/fonts/techniqo.ttf') format('truetype');
}

@font-face {
  font-family: 'Comfortaa Regular';
  src: url('/fonts/Comfortaa-Regular.woff2') format('woff2'),
    url('/fonts/Comfortaa-Regular.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Comforta Regular';
  src: url('/fonts/Comfortaa-Bold.woff2') format('woff2'),
    url('/fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: bold;
}

body {
  font-family: 'Comfortaa Regular';
  color: #231f20;
  background-color: #f8eddd;
  max-width: 800px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #e84f1a;
}

a:hover {
  text-decoration: underline;
}

/* Selected item in the navigation */
nav ul li a.selected {
  font-weight: bold;
  color: #e84f1a;
  border-bottom: 2px solid #e84f1a;
}

hr {
  border: 0;
  height: 1px;
  background-color: #e84f1a;
  margin: 2em 0;
}

.logo {
  font-family: 'Technique Open';
  font-size: 3em;
  color: #e84f1a;
  padding-top: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-right: 1em;
}

section {
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.hero img {
  max-width: 400px;
  height: auto;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.hero {
  text-align: center;
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 15px;
}

.screenshots img {
  max-width: 300px;
  height: auto;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.screenshots {
  text-align: center;
  background-color: #f9f9f9;
  padding: 60px 20px;
  border-radius: 15px;
}

.trust .guarantees span {
  display: block;
  margin: 10px 0;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background-color: #ff8000;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
}

.cta-link {
  color: #e84f1a;
  text-decoration: none;
  font-weight: bold;
}

.final-cta {
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 15px;
}

footer {
  margin-top: 30px;
}

strong {
  font-weight: bold;
}

#specs {
  /* Add some padding around the whole section if needed */
  padding-top: 20px;
  padding-bottom: 30px;
}

#specs h2 {
  /* Style the section heading if you haven't already */
  margin-bottom: 25px;
  color: #333;
  /* Example color */
}

#specs table {
  width: 100%;
  /* Table tries to fill its container */
  max-width: 700px;
  /* Max width to prevent it getting too wide on large screens */
  margin: 20px auto;
  /* Center the table horizontally if container is wider & add space */
  border-collapse: collapse;
  /* Makes borders look cleaner */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  /* Optional subtle shadow */
  border-radius: 5px;
  /* Optional rounded corners for the table */
  overflow: hidden;
  /* Ensures box-shadow respects border-radius */
  font-size: 0.95em;
  /* Slightly smaller font for table data */
}

#specs th,
#specs td {
  padding: 12px 18px;
  /* Padding inside cells */
  border: 1px solid #e0e0e0;
  /* Light grey border for cells */
  text-align: left;
  /* Align text to the left */
  color: #555;
  /* Default text color for cells */
}

/* Style the Header Row (th elements) */
#specs th {
  background-color: #f8f8f8;
  /* Light background for the header */
  font-weight: 600;
  /* Make header text bolder */
  color: #333;
  /* Darker text color for header */
  border-bottom-width: 2px;
  /* Slightly thicker bottom border for header */
}

/* Style the "Feature" column cells (first cell in each data row) */
#specs td:first-child {
  font-weight: 500;
  /* Slightly bolder text for feature names */
  color: #444;
  /* Slightly darker text for feature names */
  width: 40%;
  /* Optional: Give the first column a fixed width */
}

/* Zebra Striping - Alternate row colors for better readability */
#specs tr:nth-child(even) {
  background-color: #fdfdfd;
  /* Very light background for even rows */
}

/* Hover effect - Highlight row when mouse is over it */
#specs tr:hover {
  background-color: #f1f1f1;
  /* Light grey highlight on hover */
}

/* Optional: Ensure table looks reasonable on very small screens */
@media (max-width: 480px) {
  #specs table {
    font-size: 0.9em;
    /* Slightly smaller font on small screens */
  }

  #specs th,
  #specs td {
    padding: 10px 12px;
    /* Reduce padding slightly */
  }
}