body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  background-color: #f9fafb; /* Light gray background */
}

h1 {
  color: #ff0000; /* Primary orange color */
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 1rem;
}

.card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  text-align: center;
  max-width: 800px;
  margin: 2rem auto;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  color: #ffffff;
  background-color: #ff0000; /* Primary orange color */
  text-decoration: none;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #dc2626; /* Darker shade for hover effect */
}

.footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6b7280; /* Gray color for footer text */
}

.icon {
  background-color: #ffedd5;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Utility classes from Tailwind used in Home.jsx, adapted for plain CSS */

.bg-gradient-to-br {
  background: linear-gradient(to bottom right, #f9fafb, #e5e7eb);
}

.from-gray-50 {
  /* Already covered by .bg-gradient-to-br */
}

.to-gray-200 {
  /* Already covered by .bg-gradient-to-br */
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

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

.items-start {
  align-items: flex-start;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.bg-white {
  background-color: #fff;
}

.p-10 {
  padding: 2.5rem;
}

.md\:p-16 {
  /* For screens >= 768px */
}
@media (min-width: 768px) {
  .md\:p-16 {
    padding: 4rem;
  }
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

.z-20 {
  z-index: 20;
  position: relative;
}

.flex-col {
  flex-direction: column;
}

.gap-5 {
  gap: 1.25rem;
}

.text-primary-orange {
  color: #ff0000;
}

.bg-orange-100 {
  background-color: #ffedd5;
}

.p-4 {
  padding: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.md\:text-4xl {
  /* For screens >= 768px */
}
@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

.font-bold {
  font-weight: 700;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.mt-6 {
  margin-top: 1.5rem;
}

.text-gray-700 {
  color: #374151;
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.flex-col {
  flex-direction: column;
}

.md\:flex-row {
  /* For screens >= 768px */
}
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
}

.gap-3 {
  gap: 0.75rem;
}

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

.justify-center {
  justify-content: center;
}

.inline-block {
  display: inline-block;
}

.w-\[200px\] {
  width: 200px;
}

.bg-primary-orange {
  background-color: #ff0000;
}

.text-white {
  color: #fff;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.hover\:bg-red-600:hover {
  background-color: #dc2626;
}

.bg-gray-800 {
  background-color: #1f2937;
}

.hover\:bg-gray-900:hover {
  background-color: #111827;
}

.mt-10 {
  margin-top: 2.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.text-\[12px\] {
  font-size: 12px;
}

.text-gray-600 {
  color: #4b5563;
}

.italic {
  font-style: italic;
}

/* Responsive background and layout for the main container */
body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  background: linear-gradient(to bottom right, #f9fafb, #e5e7eb);
  min-height: 100vh;
}

/* Responsive flex container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 80vh;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Center vertically on medium screens and up */
@media (min-width: 640px) {
  .container {
    justify-content: center;
  }
}

/* Card styles */
.card {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 1rem;
  text-align: center;
  max-width: 896px;
  margin: 2rem auto 0 auto;
  z-index: 20;
}

@media (min-width: 768px) {
  .card {
    padding: 2rem;
    margin-top: 0;
  }
}

/* Responsive heading */
h1 {
  color: #ff0000;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  .website {
    font-size: 1.3rem;
  }
}

/* Responsive message and contact info */
.message,
.contact-info {
  margin-top: 1.5rem;
  color: #374151;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .message,
  .contact-info {
    font-size: 1.125rem;
  }
}

.contact-info .button {
  margin: 0.375rem 0.375rem 0 0.375rem;
  width: 100%;
  max-width: 200px;
}

@media (min-width: 768px) {
  .contact-info .button {
    display: inline-block;
    width: 200px;
  }
  .contact-info {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    justify-content: center;
  }
}

/* Button styles */
.button {
  display: inline-block;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  background-color: #ff0000;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 0.5rem;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #dc2626;
}

.button:last-child {
  background-color: #1f2937;
}

.button:last-child:hover {
  background-color: #111827;
}

/* Icon styles */
.icon {
  background-color: #ffedd5;
  padding: 1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 3rem;
  height: 3rem;
}

@media (min-width: 768px) {
  .icon {
    width: 5rem;
    height: 5rem;
  }
}

/* Footer styles */
.footer {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Utility for spacing between elements */
.space-y-3 > * + * {
  margin-top: 0.75rem;
}