/* Global Styles */
:root {
  --primary: #28809A;
  --primary-dark: #28809A;
  --secondary: #28809A;
  --accent: #28809A;
  --light: #e0f2f1;
  --dark: #212529;
  --gray: #6c757d;
  --success: #2e7d32;
  --warning: #ff8f00;
  --danger: #c62828;
}
.cj{
   font-style: italic;
    font-weight: bold;
    font-family: 'Times New Roman', serif;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.logo-dot {
  color: var(--accent);
}

.menu {
  display: flex;
  list-style: none;
}

.menu li {
  margin-left: 1.5rem;
}

.menu a {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: var(--primary);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 8rem 5% 6rem;
  margin-top: 60px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Search Box */
.search-box {
  background: white;
  padding: 0.5rem;
  border-radius: 50px;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-input {
  flex: 1;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  outline: none;
}

.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-dark);
}

/* Features Section */
.features {
  padding: 6rem 5%;
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray);
  font-size: 1.2rem;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Stats Section */
.stats {
  padding: 6rem 5%;
  background: var(--primary);
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* How It Works Section */
.how-it-works {
  padding: 6rem 5%;
  background: white;
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background: var(--primary);
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-content {
  background: var(--light);
  padding: 2rem;
  border-radius: 10px;
  width: calc(50% - 30px);
  position: relative;
}

.step:nth-child(even) {
  flex-direction: row-reverse;
}

.step:nth-child(odd) .step-content {
  margin-right: 60px;
}

.step:nth-child(even) .step-content {
  margin-left: 60px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA Section */
.cta {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Policy Pages Styles */
.policy-page {
  padding: 120px 5% 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.policy-container h2 {
  color: var(--primary-dark);
  margin: 2rem 0 1rem;
}

.policy-container p,
.policy-container ul {
  margin-bottom: 1rem;
}

.policy-container ul {
  padding-left: 2rem;
}

.policy-container li {
  margin-bottom: 0.5rem;
}

.policy-date {
  margin-top: 3rem;
  color: var(--gray);
  font-style: italic;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--accent);
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background: var(--accent);
}

.copyright {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .steps-container::before {
    left: 20px;
  }
  
  .step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .step-content {
    width: 100%;
    margin-left: 40px !important;
  }
  
  .step-number {
    left: 20px;
    transform: none;
  }
}
/* How It Works Section - Mobile Fixes */
@media (max-width: 768px) {
  .steps-container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .steps-container::before {
    left: 1rem;
  }

  .step {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2rem;
    width: calc(100% - 2rem);
  }

  .step-content {
    width: 100%;
    margin: 0 0 1rem 0 !important;
  }

  .step-number {
    left: -2rem;
    transform: none;
  }

  .step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }

  .step:nth-child(odd) .step-content,
  .step:nth-child(even) .step-content {
    margin: 0 0 1rem 0;
  }
}
@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }
  
  .menu {
    position: fixed;
    top: 60px;
    left: 0;
    background-color: white;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .menu.active {
    height: auto;
    padding: 1rem 0;
  }
  
  .menu li {
    margin: 1rem 0;
  }
  
  .hero-container {
    flex-direction: column;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .search-box {
    flex-direction: column;
    border-radius: 10px;
    padding: 1rem;
  }
  
  .search-input {
    border-radius: 50px;
    margin-bottom: 1rem;
  }
  
  .cta-btns {
    justify-content: center;
  }
}
