/* Layout Utilities */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ebedf3;
}

.page-container {
  flex: 1; /* Allow the container to grow and fill space */
  max-width: 90%; /* Utilize 90% of the screen width */
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  background-color: #ebedf3; /* Include padding in width/height */
}

.section-spacing {
  padding: 2rem 0; /* Consistent section spacing */
}

/* Responsive Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Adapt to screen size */
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Hero Section */
.hero-title {
  font-size: 2rem; /* Adjust for smaller screens */
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.hero-description {
  font-size: 1rem; /* Scaled down for smaller devices */
  color: #676767;
  text-align: center;
  margin: 1rem 0;
}

/* Call-to-Action Button */
.cta-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ebedf3; /* Light text color */
  background-color: #003b6d; /* Dark blue background */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(103, 103, 103, 0.3); /* Subtle shadow */
}

.cta-button:hover {
  background-color: #6699cc; /* Softer blue on hover */
  box-shadow: 0 6px 8px rgba(103, 103, 103, 0.5); /* Enhanced shadow on hover */
}

.cta-button span {
  margin-right: 0.5rem;
}

.icon-small {
  width: 1rem;
  height: 1rem;
  color: #ebedf3; /* Match text color */
}

.initial-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full-screen loading */
  width: 100%;
  background-color: #ebedf3;
}

/* Footer */
footer {
  background-color: #003b6d; /* Footer background */
  color: #BDBDBD; /* Footer text color */
  padding: 2rem 1rem;
  text-align: center;
  width: 100%;
}

footer p {
  font-size: 0.875rem;
}

/* Button Responsiveness */
.btn-primary,
.btn-secondary {
  width: auto; /* Default size */
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    width: 100%; /* Full-width buttons for smaller screens */
  }

  .page-container {
    padding: 1rem;
    max-width: 95%;  /* Reduce padding on smaller screens */
  }

  .hero-title {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .hero-description {
    font-size: 0.875rem;
  }
}

/* Feature Cards */
.features-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #ebedf3;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(103, 103, 103, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 6px 12px rgba(103, 103, 103, 0.5);
  transform: translateY(-4px);
}

.feature-icon-container {
  width: 48px;
  height: 48px;
  background-color: #BDBDBD; /* Neutral background for icon container */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #003b6d;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #676767; /* Muted grey for feature descriptions */
}

/* Centered Header */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25vh; /* Full viewport height */
  background-color: #ebedf3; /* Match background color */
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-title {
  font-size: calc(2rem + 2vw); /* Responsive font size based on screen width */
  font-weight: bold;
  color: #003b6d; /* Dark blue text */
  text-transform: uppercase; /* Optional for styling */
  letter-spacing: 0.1rem; /* Optional for styling */
}
/* Layout Utilities */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ebedf3;
}

.page-container {
  flex: 1; /* Allow the container to grow and fill space */
  max-width: 90%; /* Utilize 90% of the screen width */
  margin: 0 auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  background-color: #ebedf3; /* Include padding in width/height */
}

.section-spacing {
  padding: 2rem 0; /* Consistent section spacing */
}

/* Responsive Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Adapt to screen size */
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Hero Section */
.hero-title {
  font-size: 2rem; /* Adjust for smaller screens */
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

.hero-description {
  font-size: 1rem; /* Scaled down for smaller devices */
  color: #676767;
  text-align: center;
  margin: 1rem 0;
}

/* Call-to-Action Button */
.cta-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ebedf3; /* Light text color */
  background-color: #003b6d; /* Dark blue background */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(103, 103, 103, 0.3); /* Subtle shadow */
}

.cta-button:hover {
  background-color: #6699cc; /* Softer blue on hover */
  box-shadow: 0 6px 8px rgba(103, 103, 103, 0.5); /* Enhanced shadow on hover */
}

.cta-button span {
  margin-right: 0.5rem;
}

.icon-small {
  width: 1rem;
  height: 1rem;
  color: #ebedf3; /* Match text color */
}

.initial-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full-screen loading */
  width: 100%;
  background-color: #ebedf3;
}

/* Footer */
footer {
  background-color: #003b6d; /* Footer background */
  color: #BDBDBD; /* Footer text color */
  padding: 2rem 1rem;
  text-align: center;
  width: 100%;
}

footer p {
  font-size: 0.875rem;
}

/* Button Responsiveness */
.btn-primary,
.btn-secondary {
  width: auto; /* Default size */
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary {
    width: 100%; /* Full-width buttons for smaller screens */
  }

  .page-container {
    padding: 1rem;
    max-width: 95%;  /* Reduce padding on smaller screens */
  }

  .hero-title {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .hero-description {
    font-size: 0.875rem;
  }
}

/* Feature Cards */
.features-section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: #ebedf3;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(103, 103, 103, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 6px 12px rgba(103, 103, 103, 0.5);
  transform: translateY(-4px);
}

.feature-icon-container {
  width: 48px;
  height: 48px;
  background-color: #BDBDBD; /* Neutral background for icon container */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #003b6d;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #676767; /* Muted grey for feature descriptions */
}

/* Centered Header */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25vh; /* Full viewport height */
  background-color: #ebedf3; /* Match background color */
  text-align: center;
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header-title {
  font-size: calc(2rem + 2vw); /* Responsive font size based on screen width */
  font-weight: bold;
  color: #003b6d; /* Dark blue text */
  text-transform: uppercase; /* Optional for styling */
  letter-spacing: 0.1rem; /* Optional for styling */
}
