body {
  font-family: "Noto Sans", sans-serif;
  background-color: #f8f9fa;
  color: #343a40;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
}

:root {
  --primary-color: #005a87;
  --secondary-color: #6c757d;
  --light-bg: #f8f9fa;
  --dark-text: #343a40;
  --accent-color: #be8a06;
}

main {
  flex: 1 0 auto;
}

.navbar-light {
  background-color: #ffffff !important;
  border-bottom: 1px solid #dee2e6;
}

.navbar-brand {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-text);
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.nav-link {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--dark-text);
}

.nav-link:hover {
  color: var(--primary-color);
}

.hero-section {
  background-color: var(--primary-color);
  padding: 4rem 0;
}

.hero-section h1 {
  font-weight: 700;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #00416a;
  border-color: #00416a;
}

.hero-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

.hero-section .btn-primary:hover {
  background-color: #926b09;
  border-color: #926b09;
}

.btn-secondary-custom {
  color: var(--primary-color);
  background-color: transparent;
  border: 2px solid var(--primary-color);
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-secondary-custom:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 90, 135, 0.2);
}

.testimonials-section {
  background-color: var(--light-bg);
}

.star-rating-summary {
  display: inline-block;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem 2.5rem;
  background-color: #ffffff;
}

.rating-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.star-rating-summary .rating-score {
  font-family: "Lora", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}

.star-rating-summary .stars {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin: 0;
}

.star-rating-summary .rating-count {
  font-size: 0.95rem;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e9ecef;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #555;
  border-left: 3px solid var(--accent-color);
  padding-left: 1.5rem;
}

.testimonial-card cite {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: var(--dark-text);
  font-style: normal;
  text-align: right;
}

.step-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
  padding-left: 80px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-family: "Lora", serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.step-card:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -3rem;
  width: 2px;
  background-color: #dee2e6;
}

@media (max-width: 576px) {
  .step-card {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    position: static;
    margin-bottom: 1rem;
  }

  .step-card:not(:last-child)::before {
    display: none;
  }
}

.founder-profile-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
}

.founder-img {
  max-width: 280px;
  border: 6px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.founder-name {
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.founder-title {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.founder-quote {
  margin: 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent-color);
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

.founder-quote p:last-child {
  margin-bottom: 0;
}

.principle-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem auto;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: transform 0.3s ease;
}

.principle-icon:hover {
  transform: scale(1.1);
}

.contact-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  padding: clamp(1.5rem, 6vw, 3rem);
}

.contact-icon-link {
  display: inline-block;
  margin: 0 auto 1.5rem auto;
  transition: transform 0.3s ease;
}

.contact-icon-link:hover {
  transform: scale(1.1);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.contact-email-link {
  display: block;
  font-family: "Lora", serif;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: min(1.5rem, 4.2vw);
  white-space: nowrap;
  overflow: hidden;
}

.contact-email-link:hover {
  color: var(--dark-text);
  text-decoration: none;
}

.contact-phone-link {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: min(1.5rem, 4.2vw);
  white-space: nowrap;
  overflow: hidden;
}

.contact-phone-link:hover {
  color: var(--dark-text);
  text-decoration: none;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #00416a;
}

footer {
  flex-shrink: 0;
  background-color: #e9ecef;
  color: var(--secondary-color);
}

footer a {
  color: var(--secondary-color);
}

footer a:hover {
  color: var(--primary-color);
}
