body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #ffffff;
  color: #333;
}

.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.nav-logo h2 {
  color: #107154;
  margin: 0;
  font-size: 24px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 16px;
  border-radius: 6px;
}

.nav-links a:hover {
  color: #107154;
  background: #f8fffe;
}

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
  .nav-container {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }
  
  .nav-logo h2 {
    font-size: 20px;
  }
  
  .nav-links {
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
  .nav-container {
    padding: 10px 15px;
  }
  
  .nav-links {
    gap: 8px;
  }
  
  .nav-links a {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* Tablet devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-container {
    padding: 15px 30px;
  }
  
  .nav-logo h2 {
    font-size: 22px;
  }
  
  .nav-links {
    gap: 25px;
  }
}

.hero {
  background-color: #107154;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-tagline {
  font-size: 3.5em;
  font-weight: bold;
  margin: 0 0 30px 0;
  line-height: 1.2;
}

/* Mobile devices */
@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
  }
  
  .hero-tagline {
    font-size: 2.2em;
    line-height: 1.3;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .hero {
    padding: 30px 10px;
  }
  
  .hero-tagline {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 50px 30px;
  }
  
  .hero-tagline {
    font-size: 3em;
  }
}

.cta-button {
  background: white;
  color: #107154;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.about, .features, .usps, .industries, .route-demo, .calculator {
  padding: 40px 20px;
  text-align: center;
}

.about h2 {
  font-size: 2.2em;
  font-weight: bold;
  color: #107154;
  margin-bottom: 25px;
}

.about p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.usps {
  background: linear-gradient(135deg, #f8fffe 0%, #e5f7f1 100%);
  padding: 60px 20px;
}

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

.usps-subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.usps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  justify-items: center;
}

.usp-card {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(16, 113, 84, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #107154, #4ecdc4);
}

.usp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(16, 113, 84, 0.15);
  border-color: #107154;
}

.usp-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.usp-card h3 {
  color: #107154;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.usp-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.usp-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #107154, #4ecdc4);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.usps-cta {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(16, 113, 84, 0.1);
}

.usps-cta p {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.usps-button {
  display: inline-block;
  background: linear-gradient(135deg, #107154, #4ecdc4);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.usps-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 113, 84, 0.3);
}

.startup-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* USPs Section Responsive */
@media (max-width: 768px) {
  .usps {
    padding: 40px 15px;
  }
  
  .usps-container {
    max-width: 100%;
  }
  
  .usps-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .usps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .usp-card {
    padding: 25px 20px;
  }
  
  .usp-icon {
    font-size: 40px;
  }
  
  .usp-card h3 {
    font-size: 18px;
  }
  
  .startup-metrics {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  
  .cities-section, .loi-section {
    padding: 20px;
  }
  
  .cities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  
  .city-pill {
    padding: 6px 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .usps {
    padding: 30px 10px;
  }
  
  .usps-grid {
    gap: 15px;
  }
  
  .usp-card {
    padding: 20px 15px;
  }
  
  .usp-icon {
    font-size: 36px;
  }
  
  .cities-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .city-pill {
    padding: 8px 12px;
    font-size: 13px;
  }
}

/* Tablet USPs */
@media (min-width: 769px) and (max-width: 1024px) {
  .usps {
    padding: 50px 30px;
  }
  
  .usps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }
}

.cities-section, .loi-section {
  background: #f8fffe;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e5f7f1;
  text-align: center;
}

.cities-section h3, .loi-section h3 {
  color: #107154;
  margin-bottom: 15px;
  font-size: 18px;
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.city-pill {
  background: #107154;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.loi-section p {
  margin: 8px 0;
  color: #666;
}

.loi-section p:first-of-type {
  font-size: 24px;
  color: #107154;
  font-weight: bold;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

/* Features Section Responsive */
@media (max-width: 768px) {
  .features {
    padding: 30px 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  
  .feature-item {
    padding: 20px;
  }
  
  .feature-item h3 {
    font-size: 16px;
  }
  
  .about h2 {
    font-size: 1.8em;
  }
  
  .about p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .features {
    padding: 25px 10px;
  }
  
  .features-grid {
    gap: 15px;
  }
  
  .feature-item {
    padding: 15px;
  }
  
  .about h2 {
    font-size: 1.6em;
  }
  
  .about p {
    font-size: 15px;
  }
}

/* Tablet Features */
@media (min-width: 769px) and (max-width: 1024px) {
  .features {
    padding: 35px 30px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }
}

/* Industries Section Responsive */
@media (max-width: 768px) {
  .industries {
    padding: 30px 15px;
  }
  
  .industry-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  
  .industry-card {
    padding: 25px 20px;
  }
  
  .industry-icon {
    font-size: 40px;
  }
  
  .industry-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .industries {
    padding: 25px 10px;
  }
  
  .industry-cards {
    gap: 15px;
  }
  
  .industry-card {
    padding: 20px 15px;
  }
  
  .industry-icon {
    font-size: 36px;
  }
}

/* Tablet Industries */
@media (min-width: 769px) and (max-width: 1024px) {
  .industries {
    padding: 35px 30px;
  }
  
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

.feature-item {
  background-color: #f8fffe;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid #e5f7f1;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(16, 113, 84, 0.1);
}

.feature-item h3 {
  color: #107154;
  margin-bottom: 10px;
}

.industries-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.industry-card {
  background: white;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(16, 113, 84, 0.1);
  border: 2px solid #e5f7f1;
  transition: all 0.3s ease;
  text-align: left;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(16, 113, 84, 0.15);
  border-color: #107154;
}

.industry-icon {
  font-size: 48px;
  margin-bottom: 20px;
  text-align: center;
}

.industry-card h3 {
  color: #107154;
  margin-bottom: 15px;
  text-align: center;
}

.industry-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.industry-highlight {
  display: block;
  background: linear-gradient(135deg, #107154, #4ecdc4);
  color: white;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  margin: 15px auto 0 auto;
  max-width: calc(100% - 20px);
  word-wrap: break-word;
}

.demo-container {
  max-width: 800px;
  margin: 0 auto;
  background: #f8fffe;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #e5f7f1;
}

.route-canvas {
  position: relative;
  width: 100%;
  height: 400px;
  background: 
    linear-gradient(90deg, #e5e5e5 1px, transparent 1px),
    linear-gradient(180deg, #e5e5e5 1px, transparent 1px),
    linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid #107154;
  box-shadow: 0 8px 32px rgba(16, 113, 84, 0.15);
}

.route-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, #107154 25%, transparent 25%), 
    linear-gradient(-45deg, #107154 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #107154 75%), 
    linear-gradient(-45deg, transparent 75%, #107154 75%);
  background-size: 2px 2px;
  background-position: 0 0, 0 1px, 1px -1px, -1px 0px;
  opacity: 0.05;
  pointer-events: none;
}

/* Route Demo Responsive */
@media (max-width: 768px) {
  .route-demo {
    padding: 30px 15px;
  }
  
  .demo-container {
    padding: 15px;
  }
  
  .route-canvas {
    height: 300px;
  }
  
  .warehouse {
    font-size: 12px;
    padding: 6px 10px;
    top: 140px;
    left: 30px;
  }
  
  .delivery-point {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  #point1 { top: 60px; right: 80px; }
  #point2 { bottom: 80px; right: 60px; }
  #point3 { bottom: 60px; left: 80px; }
  #point4 { top: 100px; left: 120px; }
  
  .delivery-vehicle {
    font-size: 20px;
    top: 140px;
    left: 30px;
  }
  
  .demo-stats {
    gap: 15px;
  }
  
  .demo-stats .stat {
    min-width: 100px;
    padding: 8px 12px;
  }
}

@media (max-width: 480px) {
  .route-demo {
    padding: 25px 10px;
  }
  
  .demo-container {
    padding: 10px;
  }
  
  .route-canvas {
    height: 250px;
  }
  
  .warehouse {
    font-size: 10px;
    padding: 4px 8px;
    top: 120px;
    left: 20px;
  }
  
  .delivery-point {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  
  #point1 { top: 50px; right: 60px; }
  #point2 { bottom: 60px; right: 40px; }
  #point3 { bottom: 50px; left: 60px; }
  #point4 { top: 80px; left: 100px; }
  
  .delivery-vehicle {
    font-size: 18px;
    top: 120px;
    left: 20px;
  }
  
  .demo-stats {
    flex-direction: column;
    gap: 10px;
  }
  
  .demo-stats .stat {
    min-width: auto;
  }
}

/* Tablet Route Demo */
@media (min-width: 769px) and (max-width: 1024px) {
  .route-demo {
    padding: 35px 30px;
  }
  
  .demo-container {
    padding: 20px;
  }
}

.warehouse {
  position: absolute;
  top: 180px;
  left: 50px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #107154, #0d5f46);
  color: white;
  border-radius: 12px;
  font-weight: bold;
  font-size: 14px;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(16, 113, 84, 0.3);
  border: 2px solid white;
}

.delivery-point {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #ff5252);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
  border: 3px solid white;
}

.delivery-point:hover::after {
  content: attr(data-address);
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}

.delivery-point.visited {
  background: #4ecdc4;
  transform: scale(1.1);
}

#point1 { top: 80px; right: 150px; }
#point2 { bottom: 100px; right: 100px; }
#point3 { bottom: 80px; left: 150px; }
#point4 { top: 120px; left: 200px; }

.delivery-vehicle {
  position: absolute;
  top: 180px;
  left: 50px;
  font-size: 28px;
  z-index: 15;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transform-origin: center;
}

.delivery-vehicle:hover {
  transform: scale(1.1);
}

.route-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.route-lines line {
  stroke-width: 4;
  opacity: 0;
  transition: all 0.6s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.unoptimized line {
  stroke: #ff6b6b;
  stroke-dasharray: 12,6;
  stroke-width: 3;
  animation: dash 2s linear infinite;
}

.optimized line {
  stroke: #107154;
  stroke-width: 5;
  stroke-linecap: round;
}

.route-lines line.active {
  opacity: 0.9;
}

@keyframes dash {
  to {
    stroke-dashoffset: -36;
  }
}

.demo-controls {
  text-align: center;
}

.demo-controls button {
  background: #107154;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.demo-controls button:hover {
  background: #0d5f46;
}

.demo-controls button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.demo-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.demo-stats .stat {
  background: white;
  padding: 10px 15px;
  border-radius: 8px;
  border: 2px solid #e5f7f1;
  min-width: 120px;
}

.demo-stats .label {
  display: block;
  font-weight: bold;
  color: #666;
  font-size: 12px;
  margin-bottom: 5px;
}

.demo-stats .stat span:last-child {
  font-size: 18px;
  font-weight: bold;
  color: #107154;
}

.calculator-container {
  max-width: 900px;
  margin: 0 auto;
  background: #f8fffe;
  border-radius: 16px;
  padding: 40px;
  border: 2px solid #e5f7f1;
  box-shadow: 0 8px 32px rgba(16, 113, 84, 0.1);
}

.calculator-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.calculator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Calculator Section Responsive */
@media (max-width: 768px) {
  .calculator {
    padding: 30px 15px;
  }
  
  .calculator-container {
    padding: 25px 20px;
  }
  
  .calculator-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .form-group input,
  .form-group select {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .calculate-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .pricing-results {
    padding: 20px;
  }
  
  .pricing-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .summary-card {
    padding: 15px;
  }
  
  .price-large {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .calculator {
    padding: 25px 10px;
  }
  
  .calculator-container {
    padding: 20px 15px;
  }
  
  .calculator-content {
    gap: 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select {
    padding: 12px;
    font-size: 15px;
  }
  
  .pricing-results {
    padding: 15px;
  }
  
  .pricing-results h3 {
    font-size: 18px;
  }
  
  .breakdown-item {
    font-size: 14px;
  }
  
  .price-large {
    font-size: 18px;
  }
}

/* Tablet Calculator */
@media (min-width: 769px) and (max-width: 1024px) {
  .calculator {
    padding: 35px 30px;
  }
  
  .calculator-container {
    padding: 35px 30px;
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.label-icon {
  margin-right: 8px;
  font-size: 16px;
}

.label-text {
  flex: 1;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5f7f1;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #107154;
  box-shadow: 0 0 0 3px rgba(16, 113, 84, 0.1);
}

.form-group small {
  display: block;
  color: #666;
  font-size: 12px;
  margin-top: 4px;
}

.calculate-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #107154 0%, #0d5f46 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 113, 84, 0.3);
}

.calculate-btn:active {
  transform: translateY(0);
}

.pricing-results {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border: 2px solid #e5f7f1;
}

.pricing-results h3 {
  color: #107154;
  margin-bottom: 20px;
  font-size: 20px;
}

.price-breakdown {
  margin-bottom: 25px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 2px solid #107154;
  font-weight: bold;
  font-size: 16px;
  color: #107154;
}

.breakdown-label {
  color: #666;
}

.breakdown-value {
  font-weight: bold;
  color: #333;
}

.pricing-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 25px;
}

.summary-card {
  background: #f8fffe;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e5f7f1;
}

.summary-card.highlighted {
  background: #107154;
  border-color: #107154;
  color: white;
}

.summary-card h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.summary-card.highlighted h4 {
  color: #b8e6d4;
}

.price-large {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}

.summary-card small {
  font-size: 12px;
  opacity: 0.8;
}

.cta-section {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e5f7f1;
}

.quote-cta {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.quote-cta:hover {
  background: #20b954;
  transform: translateY(-2px);
}

button {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #107154;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.page-hero {
  background: linear-gradient(135deg, #107154 0%, #4ecdc4 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.page-hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.2em;
  opacity: 0.9;
}

.about-content, .contact-content {
  padding: 60px 20px;
}

.content-container, .contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* About Page Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 15px;
  }
  
  .page-hero h1 {
    font-size: 2.2em;
  }
  
  .page-hero p {
    font-size: 1.1em;
  }
  
  .about-content {
    padding: 40px 15px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .stat-box {
    padding: 20px;
  }
  
  .stat-box h3 {
    font-size: 1.5em;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .value-item {
    padding: 25px 20px;
  }
  
  .value-icon {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 40px 10px;
  }
  
  .page-hero h1 {
    font-size: 1.8em;
  }
  
  .about-content {
    padding: 30px 10px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .stat-box {
    padding: 15px;
  }
  
  .value-item {
    padding: 20px 15px;
  }
  
  .value-icon {
    font-size: 36px;
  }
}

/* Tablet About */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-hero {
    padding: 70px 30px;
  }
  
  .about-content {
    padding: 50px 30px;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-text h2 {
  color: #107154;
  margin-bottom: 15px;
  margin-top: 30px;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #666;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #107154;
  font-weight: bold;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-box {
  background: #f8fffe;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e5f7f1;
}

.stat-box h3 {
  font-size: 2em;
  color: #107154;
  margin: 0 0 10px 0;
}

.stat-box p {
  margin: 0;
  color: #666;
  font-weight: bold;
}

.team-section {
  background: #f8fffe;
  padding: 60px 20px;
}

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

.value-item {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e5f7f1;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.value-item h3 {
  color: #107154;
  margin-bottom: 15px;
}

.value-item p {
  color: #666;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-content {
    padding: 40px 15px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-form {
    padding: 25px 20px;
  }
  
  .contact-method {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .method-icon {
    font-size: 20px;
    margin-right: 12px;
  }
  
  .hours-list {
    padding: 15px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
  }
  
  .submit-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .quick-actions {
    padding: 40px 15px;
  }
  
  .actions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .action-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .contact-content {
    padding: 30px 10px;
  }
  
  .contact-grid {
    gap: 25px;
  }
  
  .contact-form {
    padding: 20px 15px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-method {
    padding: 12px;
    flex-direction: column;
    text-align: center;
  }
  
  .method-icon {
    margin-right: 0;
    margin-bottom: 8px;
  }
  
  .quick-actions {
    padding: 30px 10px;
  }
  
  .actions-grid {
    gap: 15px;
  }
  
  .action-card {
    padding: 20px 15px;
  }
}

/* Tablet Contact */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-content {
    padding: 50px 30px;
  }
  
  .quick-actions {
    padding: 50px 30px;
  }
  
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

.contact-info h2 {
  color: #107154;
  margin-bottom: 20px;
}

.contact-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8fffe;
  border-radius: 12px;
  border: 2px solid #e5f7f1;
}

.method-icon {
  font-size: 24px;
  margin-right: 15px;
  margin-top: 5px;
}

.method-details h3 {
  color: #107154;
  margin: 0 0 5px 0;
}

.method-details p {
  margin: 0 0 5px 0;
  font-weight: bold;
  color: #333;
}

.method-details small {
  color: #666;
}

.business-hours h3 {
  color: #107154;
  margin-bottom: 15px;
}

.hours-list {
  background: #f8fffe;
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #e5f7f1;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e5f7f1;
}

.hour-item:last-child {
  border-bottom: none;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(16, 113, 84, 0.1);
  border: 2px solid #e5f7f1;
}

.contact-form h2 {
  color: #107154;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5f7f1;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #107154;
  box-shadow: 0 0 0 3px rgba(16, 113, 84, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #107154 0%, #4ecdc4 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 113, 84, 0.3);
}

.quick-actions {
  background: #f8fffe;
  padding: 60px 20px;
  text-align: center;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.action-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;
  border: 2px solid #e5f7f1;
  transition: transform 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(16, 113, 84, 0.1);
}

.action-card h3 {
  color: #107154;
  margin-bottom: 15px;
}

.action-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.action-btn {
  display: inline-block;
  background: #107154;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: #0d5f46;
  transform: translateY(-2px);
}

.mission-statement {
  background: linear-gradient(135deg, #107154 0%, #4ecdc4 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.mission-statement h2 {
  font-size: 2.5em;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Mission Statement Responsive */
@media (max-width: 768px) {
  .mission-statement {
    padding: 40px 15px;
  }
  
  .mission-statement h2 {
    font-size: 1.8em;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .mission-statement {
    padding: 30px 10px;
  }
  
  .mission-statement h2 {
    font-size: 1.5em;
    line-height: 1.4;
  }
}

/* Tablet Mission */
@media (min-width: 769px) and (max-width: 1024px) {
  .mission-statement {
    padding: 50px 30px;
  }
  
  .mission-statement h2 {
    font-size: 2.2em;
  }
}

/* General responsive utilities */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 1.8em;
  }
  
  h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  
  h3 {
    font-size: 1.2em;
  }
  
  p {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  h1 {
    font-size: 1.6em;
  }
  
  h2 {
    font-size: 1.3em;
    margin-bottom: 12px;
  }
  
  h3 {
    font-size: 1.1em;
  }
  
  p {
    font-size: 13px;
  }
}

/* Tablet general */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  section {
    padding: 35px 30px;
  }
}

.footer {
  background-color: #f0f0f0;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
