html,
body,
.adjustment-height {
  height: 100%;
}

.adjustment-width > div {
  width: 100%;
}

.balance {
  position: relative;
  height: 80px;
}

.icon-nav {
  position: absolute;
  bottom: 0;
}

.icon-nav > i {
  font-size: 22px;
}

.icon-right {
  right: 0;
}

/* Landing Page Styles */
.landing-page {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Hero Section */
.hero-section {
  padding: 2rem 0 3rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.cta-button {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 50px;
  background-color: #4F46E5;
  border-color: #4F46E5;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  background-color: #4338CA;
  border-color: #4338CA;
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

/* Features Section */
.features-section {
  padding: 2rem 0;
}

.feature-card {
  padding: 2rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.feature-icon i {
  font-size: 2.5rem;
  color: #60A5FA;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  border-top: 1px solid #e9ecef;
  margin-top: 3rem;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 3rem;
}

.step-card {
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 140px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #60A5FA;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-text {
  color: #212529;
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* Footer */
.landing-footer {
  padding: 2rem 0 1rem 0;
  border-top: 1px solid #e9ecef;
  margin-top: 2rem;
}

.footer-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #60A5FA;
}

.footer-separator {
  color: #6c757d;
  margin: 0 0.75rem;
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem 1rem;
  text-align: left;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
  text-align: center;
}

.privacy-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.privacy-list {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.privacy-list li {
  margin-bottom: 0.75rem;
  color: #495057;
}

.privacy-policy-page p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.privacy-policy-page a:not(.footer-link):not(.privacy-back-link) {
  color: #60A5FA;
  text-decoration: underline;
}

.privacy-policy-page a:not(.footer-link):hover {
  color: #4F46E5;
}

.privacy-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
  text-align: center;
}

.privacy-back-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-back-link:hover {
  color: #0a58ca !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .how-it-works h2 {
    font-size: 1.5rem;
  }

  .feature-card {
    margin-bottom: 1rem;
  }
}
