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

:root {
  --primary-color: #2872af;
  --primary-dark: #1e5a8e;
  --primary-light: #3a8fd9;
  --neutral-dark: #1a1a1a;
  --neutral-light: #f8f8f8;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
}

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

/* Navigation */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-image {
  height: 100px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 80px;
  background: linear-gradient(135deg, rgba(40, 114, 175, 0.05) 0%, rgba(40, 114, 175, 0.02) 100%);
}

.hero-content h1 {
  font-size: 48px;
  color: var(--neutral-dark);
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 600;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image {
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.cta-button:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 114, 175, 0.3);
}

/* Intro Section */
.intro-section {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.intro-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease;
}

.intro-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeIn 0.8s ease 0.1s both;
}
.centerd-cta {
  text-align: center;
  margin-top: 20px;
}

/* Value Section */
.value-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
}

.value-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.8s ease 0.1s both;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.benefit-card {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.info-box {
  background-color: white;
  border-left: 5px solid var(--primary-color);
  padding: 25px;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Find Section */
.find-section {
  padding: 80px 20px;
}

.find-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.source-card {
  background-color: var(--neutral-light);
  padding: 35px;
  border-radius: 12px;
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.source-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(40, 114, 175, 0.15);
}

.source-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.source-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.tip-box {
  background-color: rgba(40, 114, 175, 0.1);
  padding: 25px;
  border-radius: 8px;
  max-width: 700px;
  margin: 40px auto;
  border-left: 5px solid var(--primary-color);
  animation: fadeInUp 0.8s ease 0.1s both;
}

/* Selling Section */
.selling-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
}

.selling-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.selling-section > .container > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease;
}

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-content p {
  color: var(--text-light);
  margin: 0;
}

.contact-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 0;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-banner p {
  font-size: 18px;
  margin: 0;
}

/* Types Section */
.types-section {
  padding: 80px 20px;
}

.types-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.types-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.type-card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.3);
}

.type-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.types-note {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
}

.process-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.process-card {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.process-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.process-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 20px;
}

.why-choose-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.why-choose-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.reason-card {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.reason-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.reason-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.reason-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(40, 114, 175, 0.08) 0%, rgba(40, 114, 175, 0.04) 100%);
  text-align: center;
}

.pricing-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.pricing-section p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Sustainability Section */
.sustainability-section {
  padding: 60px 20px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.sustainability-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease;
}

.sustainability-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Final CTA */
.final-cta {
  padding: 80px 20px;
  background-color: var(--neutral-light);
  text-align: center;
}

.final-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.final-cta p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Footer */
.footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: 80px;
}
 

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: var(--primary-light);
  font-size: 18px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* About Page Specific */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 30px 20px;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.story-section,
.mission-section {
  padding: 80px 20px;
}

.story-section h2,
.mission-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.story-section p,
.mission-section p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 20px;
  line-height: 1.8;
  animation: fadeIn 0.8s ease 0.1s both;
}

.mission-quote {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
  margin-top: 30px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.mission-quote p {
  font-size: 22px;
  font-style: italic;
  color: var(--primary-color);
  margin: 0;
}

.what-we-do-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
}

.what-we-do-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.what-we-do-section > .container > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-item {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.service-item h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.service-item p {
  color: var(--text-light);
  margin: 0;
}

/* About Why Choose Section */
.about-why-choose-section {
  padding: 80px 20px;
}

.about-why-choose-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.about-why-choose-section > .container > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.choose-item {
  background-color: var(--neutral-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
  animation: fadeInUp 0.8s ease;
}

.choose-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}

.choose-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.8;
}

/* Values Section */
.values-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
}

.values-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 20px;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Types Accept Section */
.types-accept-section {
  padding: 80px 20px;
}

.types-accept-section h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.types-table {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.table-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.table-header .table-cell {
  padding: 20px;
  text-align: left;
}

.table-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  padding: 20px;
  color: var(--text-dark);
}

.table-cell.header {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
}

.table-row:hover {
  background-color: var(--neutral-light);
}

/* Sustainability Section */
.about-sustainability-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
  text-align: center;
}

.about-sustainability-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.about-sustainability-section p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Who We Serve Section */
.who-serve-section {
  padding: 80px 20px;
}

.who-serve-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.who-serve-section > .container > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.serve-item {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 12px;
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.serve-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(40, 114, 175, 0.15);
}

.serve-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.serve-item p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.serve-note {
  text-align: center;
  color: var(--text-light);
  margin: 40px 0;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Technology Section */
.technology-section {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.technology-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  animation: fadeIn 0.8s ease;
}

.technology-section p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.95;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Connect Section */
.connect-section {
  padding: 80px 20px;
  background-color: var(--neutral-light);
  text-align: center;
}

.connect-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.connect-section p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 15px;
  animation: fadeIn 0.8s ease 0.1s both;
}

.connect-section strong {
  color: var(--primary-color);
  font-size: 20px;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 30px 20px;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.contact-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 20px;
  opacity: 0.95;
}

.contact-section {
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  animation: fadeInLeft 0.8s ease;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--neutral-dark);
}

.info-item {
  margin-bottom: 40px;
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.info-item p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.help-list {
  list-style: none;
  margin-top: 20px;
}

.help-list li {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 16px;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 0.8s ease;
}

.contact-map iframe {
  border: none;
}

.contact-cta {
  padding: 80px 20px;
  background-color: var(--neutral-light);
  text-align: center;
}

.contact-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--neutral-dark);
  animation: fadeIn 0.8s ease;
}

.contact-cta p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  animation: fadeIn 0.8s ease 0.1s both;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
  .logo-image {
    width: 300px;
    height: 60px;
   }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .benefits-grid,
  .sources-grid,
  .types-grid,
  .process-grid,
  .reasons-grid,
  .services-grid,
  .values-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
     .footer-logo-image {
  height:80px;
  width: 300px;
}
.footer{ padding: 20px;}

  .contact-map {
    min-height: 400px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .table-header .table-cell,
  .table-cell {
    padding: 15px;
  }

  .types-table {
    overflow-x: auto;
  }

  h2 {
    font-size: 28px !important;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 14px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .logo h1 {
    font-size: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .benefits-grid,
  .sources-grid,
  .types-grid,
  .process-grid,
  .reasons-grid,
  .services-grid,
  .values-grid,
  .serve-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px !important;
  }

  .intro-section h2,
  .value-section h2 {
    font-size: 24px;
  }
}
