/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --text-color: #000000;
  --background-light: #ffffff;

  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  --heading-font: Helvetica, Arial, sans-serif;
  --body-font: Arial, sans-serif;
}

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

body {
  font-family: var(--body-font);
  line-height: 1.8;
  background: #fafafa;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Header 1 Styles */
.header-1 {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.header-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0.05;
  z-index: -1;
}

.header-1 .header-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.header-1 .text-section {
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.header-1 .overline {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.header-1 h1 {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.header-1 .highlight {
  position: relative;
  display: inline-block;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  color: transparent;
}

.header-1 .highlight::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.header-1 .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--tertiary-color);
}

.header-1 .image-section img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.header-1 .image-section img:hover {
  transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-1 .header-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .header-1 .header-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-1 .text-section {
    padding: 30px;
  }

  .header-1 h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }
}

@media (max-width: 768px) {
  .header-1 {
    padding: 80px 0;
  }

  .header-1 .header-content {
    padding: 0 20px;
  }

  .header-1 .text-section {
    padding: 25px;
  }

  .header-1 .subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .header-1 {
    padding: 60px 0;
  }

  .header-1 .header-content {
    padding: 0 15px;
  }

  .header-1 .text-section {
    padding: 20px;
  }

  .header-1 h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
  }
}
