* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  background: #f7f9fc;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  background: #1e88e5;
  color: white;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
  font-family: "poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  cursor: pointer;
}

header nav {
  font-family: "poppins", sans-serif;
  display: flex;
  gap: 20px;
}

header .nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

header .nav-links li a {
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
}

header .nav-links li a:hover {
  color: #ffca28;
}

header .menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  text-align: start;
  padding: 100px 20px;
  background: linear-gradient(to right, #1e88e5, #42a5f5);
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  font-family: "Outfit", sans-serif;
}

.hero p {
  margin: 10px 0 20px;
  font-size: 1.2rem;
}

.hero .hero-cta {
  background: #42a5f5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: transform 0.5s ease;
}

.features {
  padding: 50px 20px;
  background: white;
  text-align: center;
}

.features h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #1e88e5;
  color: white;
  padding: 20px;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.tools-cta {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-decoration: none;
  padding: 5px 15px;
  margin-top: 20px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #1e88e5, #42a5f5);
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benifit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.benefits {
  background-color: #f7f9fc;
  padding: 50px 20px;
  text-align: center;
}

.benefits .section-title {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 40px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #dedede;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: #1e88e5;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.benefits .section-title {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: #1e88e5;
}

.benefits .section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60%;
  height: 5px;
  background-color: #ffca28;
  border-radius: 5px;
}

.tools-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.tools {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.tools .section-title {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 40px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tool-card {
  background: #f7f9fc;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid #dedede;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.tool-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1e88e5;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.tool-card .cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1e88e5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.cta {
  background-color: #1e88e5;
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 0px;
  margin-top: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-title {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 20px;
  font-weight: bold;
}

.cta-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ffffff;
  color: #1e88e5;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.newsletter {
  background-color: #f7f9fc;
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 50px;
}

.newsletter-title {
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 20px;
  font-weight: bold;
}

.newsletter-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  height: 40px;
}

.input-field {
  padding: 15px;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid #ccc;
  outline: none;
  width: 250px;
  height: 100%;
  margin-bottom: 15px;
}

.input-field:focus {
  border-color: #1e88e5;
}

.newsletter-button {
  background-color: #1e88e5;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  padding: 0 15px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer {
  background-color: #1e88e5;
  color: #fff;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column p,
.footer-column ul {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-column ul {
  padding-left: 0;
}

.footer-column ul li {
  list-style: none;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffca28;
}

.social-links li {
  margin-bottom: 10px;
}

.social-links li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.social-links li a:hover {
  color: #1e88e5;
}
