/* Reset + Base */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
}
.container { max-width: 960px; margin: 0 auto; padding: 2rem; }



.logo img{
    /* background: var(--lnavy); */
    /* color: var(--loffwhite); */
    /* font-size: 1.3rem; */
    padding-left: 1rem;
    padding-top: 1rem;
    max-height: 120px;
}

/* Hero Section */
.hero {
  /*background: #1e90ff;*/
  background: var(--lnavy);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}
.hero .btn-primary {
  background: white;
  color: var(--lnavy);
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  line-height: 3;
  text-decoration: none;
  border-radius: 5px;
}

/* Benefits */
.benefits { 
    background: #f9f9f9; 
}
.grid-3 { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.card {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Pricing */
.pricing-box {
  /*background: #1e90ff;*/

  background: var(--lnavy);
  color: white;
  padding: 2rem;
  border-radius: 5px;
  max-width: 400px;
  margin: 2rem auto;
  text-align: center;
}
.pricing-box ul { list-style: none; padding: 1rem 0; }
.btn-secondary {
  background: white;
  color: var(--lnavy);
  /*color: #1e90ff;*/
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
}

/* Testimonials */
.testimonials blockquote {
  font-style: italic;
  border-left: 4px solid var(--lnavy);
  padding-left: 1rem;
  margin-top: 1rem;
}
.testimonials cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
}

/* Contact Form */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input, .contact button, .contact textarea {
  padding: 0.75rem;
  font-size: 1rem;
}
.contact textarea {
  height: 10rem;
}
.contact button {
  background: var(--lnavy);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #f1f1f1;
  font-size: 0.9rem;
  color: #777;
}
