/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

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

/* Base Styles */
body {
  font-family: var(--body-font);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  font-size: 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

.hero-5 {
  position: relative;
  background: var(--primary-color);
  padding: 100px 0;
  margin-bottom: 50px;
  color: white;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.hero-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/pattern.svg") repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-5 .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-5 .pre-title {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-5 h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-5 h1 em {
  color: #fff;
  font-style: normal;
  background: var(--secondary-color);
  padding: 0 10px;
  border-radius: 4px;
  display: inline-block;
}

.hero-5 .feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 40px;
}

.hero-5 .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-5 .feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-5 .feature-icon {
  background: var(--secondary-color);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(78, 187, 247, 0.2);
}

.hero-5 .feature-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.hero-5 .hero-image {
  position: relative;
  margin: 0;
}

.hero-5 .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.hero-5 .hero-image:hover img {
  transform: translateY(-5px);
}

@media (max-width: 1024px) {
  .hero-5 {
    padding: 80px 0;
  }

  .hero-5 h1 {
    font-size: 48px;
  }

  .hero-5 .feature-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .hero-5 {
    padding: 60px 0;
  }

  .hero-5 .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-5 h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .hero-5 .pre-title {
    font-size: 14px;
    padding: 8px 20px;
  }

  .hero-5 .feature-item {
    padding: 10px 16px;
  }

  .hero-5 .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .hero-5 .feature-item p {
    font-size: 15px;
  }
}
