/* Updated Full CSS for Credit Lifter Website */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #222;
}
html, body {
  width: 100%;
  overflow-x: auto;
}

.site-wrapper {
  width: 1024px;
  margin: 0 auto;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  padding: 1.2rem 2rem;
}

.logo-img {
  height: auto;
  width: 500px;
  object-fit: contain;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffcc00;
}

.hero {
  text-align: center;
  padding: 2rem;
  background-color: #f9f9f9;
}

.hero-text-block {
  margin-bottom: 2rem;
}

.hero-text-block h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.hero-text-block p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta-button:hover {
  background: #004cbf;
}

.about-preview {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
}

.about-preview h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 10px;
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.how-it-works {
  background-color: #000;
  padding: 40px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.how-it-works h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #f8f9fa;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  background-color: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step h3 {
  font-size: 24px;
  color: #0072c6;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: space-between;
  }

  .step {
    flex: 1;
    margin: 0 10px;
  }
}

.services-preview {
  padding: 3rem 2rem;
  background: white;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: #f1f1f1;
  padding: 1.5rem;
  border-radius: 8px;
  width: 300px;
  text-align: center;
}

.view-all {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: #0061f2;
  font-weight: bold;
  text-decoration: none;
}

footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.95rem;
  margin-top: 2rem;
}

main.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

input, textarea, button {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #0061f2;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background: #004cbf;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-text-block h1 {
    font-size: 1.8rem;
  }

  .hero-text-block p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Additional CSS for programs */
.programs {
  background-color: #000;
  padding: 60px 20px;
}

.programs .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.programs h2 {
  width: 100%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
  font-size: 2rem;
}

.program {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 300px;
  flex-grow: 1;
  box-sizing: border-box;
}

.program h3 {
  color: #0072c6;
  margin-top: 0;
  font-size: 1.3rem;
}

.program .tagline {
  font-weight: bold;
  margin-bottom: 10px;
}

.program ul {
  padding-left: 20px;
  text-align: left;
}

.program ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Updated Services Page Styling */
.services-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
}

.services-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
}

.services-list li {
  padding-left: 1.2rem;
  margin-bottom: 12px;
  position: relative;
}

.services-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #0072c6;
  font-size: 1.2rem;
  top: 0;
}
.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #e0e0e0;
}

.container {
  width: 1024px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  /* Mobile styles */
}

