* {
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }
  
  body {
    margin: 0;
    color: #222;
  }
  
  .hero {
    background-image: url("essLandingPage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-bottom: 60px;
    position: relative;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }  

  .hero * {
    position: relative;
    z-index: 1;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .hero-content {
    text-align: center;
    padding: 60px 20px;
  }
  
  .section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  
  .section h3 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .highlight {
    background: #f9f9f9;
    border-top: 4px solid #d32f2f;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
  }
  
  .feature {
    background: #e8f5e9;
    padding: 15px;
    border-left: 4px solid #2e7d32;
  }
  
  form {
    max-width: 700px;
    margin: auto;
  }
  
  .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  input, select, textarea {
    width: 100%;
    padding: 12px;
  }
  
  textarea {
    margin-bottom: 20px;
  }
  
  .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  font-weight: 600;
  line-height: 1;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  } 
  
  .primary {
    background: #d32f2f;
    color: white;
  }

  .outline {
    background: transparent;
    border: 2px solid #d32f2f;
    color: #d32f2f;
  }
  
  .large {
    font-size: 18px;
  }
  
  .testimonials blockquote {
    background: #fff3cd;
    padding: 20px;
    margin: 15px 0;
    border-left: 4px solid #ffd000;
  }
  
  .footer {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  @media (max-width: 700px) {
    .form-group {
      flex-direction: column;
    }
  }

  .reviews {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
  }
  
  .reviews-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .reviews h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  
  .reviews-subtext {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.05rem;
  }
  
  .reviews-embed {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
  }
  
  .reviews-btn {
    border-color: #d32f2f;
    color: #d32f2f;
  }
  
  .reviews-btn:hover {
    background: #d32f2f;
    color: white;
  }
  
  .btn:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
  }

  .primary:hover {
    background: #b71c1c;
  }

  .outline:hover {
    background: #d32f2f;
    color: white;
  }
