@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* Base Styles */
:root {
  --primary: #015e59;
  --secondary: #6b8e23;
  --accent: #c3a65e;
  --light: #f9f9f9;
  --dark: #333;
  --gray: #777;
  --white: #fff;
}

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

body {
  font-family: "Montserrat", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
}

.logo {
  font-size: 32px !important;
  font-weight: 700;
  color: var(--white);
}

/* Hero Section */
.hero {
  background-image: url("/images/tmpetabe80t.webp");
  background-attachment: fixed !important;
  background-position: 50% !important;
  background-repeat: repeat !important;
  background-size: cover !important;
  color: white;
}

.bg-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.711);
}

.hero h1 {
  font-size: 32px !important;
  font-weight: 900 !important;
}

.hero p {
  font-size: 20px;
  font-family: "Lato", sans-serif;
  max-width: 700px;
}

.logo-font {
  font-size: 20px;
  font-weight: 900;
  color: white;
}

.hero-para {
  font-family: "Lato", sans-serif;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
  border: none;
  margin-top: 20px;
  cursor: pointer;
}

.logo-section {
  background-color: var(--primary);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.two-column-heading {
  color: var(--accent);
  font-size: 35px;
  font-weight: 800;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }
}

.why-us {
  border: 2px dashed var(--primary);
  margin-top: 70px !important;
}

.why-us-para {
  font-family: "Lato", sans-serif;
}

.footer {
  background-color: var(--primary);
}

.time-money-heading {
  font-size: 32px;
  color: var(--primary);
  font-weight: 600;
}

.time-money li {
  font-family: "Lato", sans-serif;
}

.time-money-para {
  font-family: "Lato", sans-serif;
}

.text-you-para {
  font-family: "Lato", sans-serif;
}

.thank-you-border {
  border: 2px dashed #c3a65e;
  width: 100%;
}

.thank-you-lato {
  font-family: "Lato", sans-serif;
}
