.hero-section {
  background: linear-gradient(135deg, #5570B4 0%, #3d5a99 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  margin: 0 0 3rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  letter-spacing: 4px;
}

.hero-description {
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0.95;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #5570B4;
  margin: 4rem 0 2rem;
}

.stats-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(85, 112, 180, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(85, 112, 180, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #5570B4;
  margin-bottom: 1rem;
}

.info-section {
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.info-section h3 {
  color: #5570B4;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.info-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
}

.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #5570B4 0%, #3d5a99 100%);
  color: white;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-white {
  background: white;
  color: #5570B4;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: transform 0.3s;
}

.btn-white:hover {
  transform: scale(1.05);
  color: #5570B4;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.home-navbar {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.home-navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-navbar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.home-nav-logo {
  height: 50px;
  width: auto;
}

.home-navbar-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #5570B4;
}

.home-navbar-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.section-description {
  text-align: center;
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

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

.info-paragraph {
  margin-top: 1rem;
}

.cta-phone {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-email {
  font-size: 1.125rem;
}

.final-section {
  margin-bottom: 3rem;
}

.home-footer {
  background: #2d3748;
  color: white;
  padding: 2rem;
  margin-top: 4rem;
  height: 100px;
}

.home-footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #5570B4;
}

.footer-copyright {
  color: #cbd5e0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #5570B4;
}

.footer-separator {
  color: #4a5568;
}
