/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
    margin: 0 auto;

  
  padding: 2rem 0;
}

/* Hero section */
.hero {
  background: #0f2027;
  
  color: #fff;
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #00a99d;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #00887a;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section.dark {
  background-color: #f5f7fa;
  color: #333;
}

.section.light {
  background-color: #ffffff;
  color: #333;
}

.section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  text-align: center;
}

.section p {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Plan includes */
.plan-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.plan-item {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  width: calc(50% - 1rem);
  max-width: 280px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.plan-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #00a99d;
}

.plan-item p {
  font-size: 0.9rem;
  color: #555;
}

/* Steps list */
.steps {
  list-style: decimal inside;
  max-width: 600px;
  margin: 0 auto;
}

.steps li {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Clients list */
.clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.clients li {
  font-size: 1rem;
  font-weight: 600;
  color: #00a99d;
}

/* Benefits list */
.benefits {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.benefits li {
  margin: 1rem 0;
  font-size: 1rem;
}

.benefits strong {
  color: #00a99d;
}

/* Services list */
.services-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.services-list li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #00a99d;
  border: none;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #00887a;
}

h1, h2, h3 {
  text-align: center;
}
* Footer */
.footer {
  background-color: #0f2027;
  color: #ffffff;
  text-align: center;
  padding: 2rem 0;
}



.logo {
  max-width: 200px;
  margin: 0 auto 1rem;
  display: block;
}
.footer a {
  color: #00a99d;
  text-decoration: none;
}

@media (max-width: 768px) {
  .plan-item {
    width: 100%;
  }
  .contact-form .form-row {
    flex-direction: column;
  }
}
/* Center text in lists */
.clients li,
.benefits li,
.services-list li,
.steps li {
  text-align: center;
}


/* Benefits list - new line after strong text */
.benefits li strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Left align text in How It Works section */
#how p,
#how .steps li {
  text-align: left;
}
