/* Base Styles & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout Utilities (Mocking MUI Container & Grid) */
.container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 600px) {
  .container {
    max-width: 600px;
  }
}

@media (min-width: 960px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: -12px;
  /* Negative margin for spacing */
}

.grid-item {
  padding: 12px;
  flex-grow: 0;
  max-width: 100%;
  flex-basis: 100%;
}

/* Grid Sizes */
@media (min-width: 600px) {
  .grid-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media (min-width: 900px) {
  .grid-md-1 {
    flex-basis: 8.333333%;
    max-width: 8.333333%;
  }

  .grid-md-2 {
    flex-basis: 16.666667%;
    max-width: 16.666667%;
  }

  .grid-md-4 {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
  }

  .grid-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.35em;
  font-weight: 500;
  line-height: 1.2;
}

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

.mb-2 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-6 {
  margin-top: 48px;
}

.py-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-6 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.gutter-bottom {
  margin-bottom: 0.35em;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  background-color: transparent;
  outline: 0;
  border: 0;
  margin: 0;
  border-radius: 4px;
  padding: 6px 16px;
  cursor: pointer;
  user-select: none;
  vertical-align: middle;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: 0.02857em;
  text-transform: uppercase;
  min-width: 64px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}

.btn-contained {
  color: #fff;
  background-color: #1976d2;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.btn-outlined {
  border: 1px solid rgba(25, 118, 210, 0.5);
  color: #1976d2;
}

.btn-large {
  padding: 8px 22px;
  font-size: 0.9375rem;
}

/* Helper for Flexbox centering */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------------
   Original LandingPage.css Content (Ported)
   --------------------------------------------------------- */

.landing-page {
  min-height: 100vh;
  background: #ffffff;
  color: #333333;
}

.hero-section {
  padding: 80px 0;
  background: #ffffff;
  border-radius: 0;
  margin-bottom: 40px;
}

.hero-title {
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  color: #2c3e50 !important;
  text-shadow: none;
  font-size: 3.75rem;
  /* h2 equivalent */
}

.hero-subtitle {
  font-weight: 400 !important;
  margin-bottom: 30px !important;
  color: #5a6c7d !important;
  font-size: 1.5rem;
  /* h5 equivalent */
}

.hero-description {
  font-size: 1.2rem !important;
  max-width: 600px;
  margin: 0 auto 40px !important;
  color: #6c757d !important;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(45deg, #007bff, #0056b3) !important;
  color: white !important;
  padding: 12px 32px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  text-transform: none !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

.feature-card {
  background: #ffffff !important;
  border: 1px solid #e9ecef !important;
  border-radius: 16px !important;
  height: 100%;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-content {
  padding: 24px;
  text-align: center;
}

.benefits-section {
  background: #ffffff;
  border-radius: 0;
  margin: 40px 0;
  padding: 40px 0;
}

.benefit-item {
  background: #ffffff !important;
  border: 1px solid #e9ecef !important;
  border-radius: 12px !important;
  height: 100%;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

.benefit-icon {
  color: #007bff !important;
  margin-right: 8px !important;
  vertical-align: middle !important;
  font-size: 1.5rem;
  /* Adjust icon size */
}

.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 20px;
  margin: 40px 0;
  padding: 40px 20px;
  color: white;
}

.cta-section h2 {
  color: white !important;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Step-by-step workflow styling */
.workflow-step {
  transition: all 0.3s ease;
}

.workflow-step:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem !important;
  }

  .hero-subtitle {
    font-size: 1.3rem !important;
  }

  .hero-description {
    font-size: 1rem !important;
  }

  .feature-card,
  .benefit-item {
    margin-bottom: 20px;
  }

  .workflow-step {
    margin-bottom: 24px;
  }

  .arrow-container {
    display: none;
  }
}

/* Icons (Material Symbols) */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* ---------------------------------------------------------
   Contact Page Styles
   --------------------------------------------------------- */



.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: inherit;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  text-decoration: none;
}

.social-icon-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.social-facebook {
  color: #1877f2;
}

.social-instagram {
  color: #e4405f;
}

.social-twitter {
  color: #1da1f2;
}

.social-linkedin {
  color: #0077b5;
}

.social-facebook:hover {
  background-color: rgba(24, 119, 242, 0.1);
  transform: scale(1.1);
}

.social-instagram:hover {
  background-color: rgba(228, 64, 95, 0.1);
  transform: scale(1.1);
}

.social-twitter:hover {
  background-color: rgba(29, 161, 242, 0.1);
  transform: scale(1.1);
}

.social-linkedin:hover {
  background-color: rgba(0, 119, 181, 0.1);
  transform: scale(1.1);
}

.paper {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.87);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  border-radius: 4px;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}