/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Courier Prime', monospace; /* Use Courier Prime for body */
  background-color: #f8f9fc;
  color: #333;
}

/* Header Text Styling */
.hero-content h1, .header {
  font-family: Arial, sans-serif; /* Keep Arial for headers */
}

/* Paragraph Styling */
.hero-content p {
  font-family: 'Courier Prime', monospace; /* Use Courier Prime for body paragraphs */
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Add padding for small screens */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo img {
  width: 120px;
}

nav .cta-button {
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

nav .cta-button:hover {
  background-color: #003d80;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  gap: 20px; /* Add spacing for better alignment */
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.hero-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.hero-button {
  display: inline-block;
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.hero-button:hover {
  background-color: #003d80;
}

/* Corner Footer */
.corner-footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.corner-link {
  font-size: 12px;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 5px;
  transition: color 0.2s ease;
}

.corner-link:hover {
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust Hero Section for Small Screens */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%; /* Full width for text */
    margin-left: 0;
  }

  .hero-content h1 {
    font-size: 2rem; /* Smaller font size */
  }

  .hero-image img {
    max-width: 80%; /* Smaller image */
    margin: 20px auto; /* Center the image */
  }
  
  /* Adjust Header */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Add space between logo and button */
  }

  nav .cta-button {
    padding: 10px 15px;
    font-size: 13px;
  }

  /* Footer */
  .corner-footer {
    bottom: 10px; /* Adjust spacing for small screens */
    right: 10px;
  }

  .corner-link {
    font-size: 11px; /* Slightly smaller font */
  }
}

@media (max-width: 480px) {
  /* Further Adjustments for Extra Small Screens */
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem; /* Smaller paragraph text */
  }

  nav .cta-button {
    font-size: 12px;
    padding: 8px 12px; /* Reduce padding */
  }
}