/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  background: #116099; /* Matches the container's background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 400px; /* Restricts the width for better design */
  padding: 20px;
  background: #116099;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  gap: 8px;
}

.construction-container {
  text-align: center;
  padding: 20px;
  max-width: 600px;
  background: #fff5eb;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px; /* Adds spacing below the logo */
}

.logo {
  width: 220px; /* Scales proportionally for mobile */
  height: auto;
}

.heading {
  width: 100%;
  color: white;
  font-size: 18px;
  text-align: left;
  margin-top: 16px;
}

.card {
  width: 100%;
  background: #fff5eb;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for cards */
  gap: 16px;
  box-sizing: border-box;
  text-decoration: none;
}

.card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0; /* Prevent the icon from resizing */
}

.card-text {
  color: black;
  font-size: 16px;
  font-weight: 500;
  text-align: center; /* Center-align the text itself */
  flex-grow: 1; /* Make the text take up remaining space */
  margin-right: 48px;
}

/* Responsive design for smaller screens */
/* @media (max-width: 768px) {

} */

@media (max-width: 480px) {
  .container {
    max-width: 360px; /* Restricts the width for better design */
    padding: 16px;
  }

  .logo-container {
    margin-bottom: 12px;
  }

  .logo {
    width: 180px;
  }

  .heading {
    font-size: 16px;
  }

  .card-text {
    color: black;
    font-size: 14px;
    font-weight: 500;
  }
}
