/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), url('senior-computer-help.jpg'));
  background-size: cover;
  background-position: center;
  color: var(--light-dark);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--gray-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border: 1px solid var(--gray-light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  background-color: var(--primary-color);
  color: white;
  font-size: 2rem;
  padding: 1.5rem;
  text-align: center;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.service-content p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.service-price {
  margin-bottom: 1.2rem;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-note {
  font-size: 0.8rem;
  color: var(--gray-medium);
  margin-left: 0.5rem;
}

.learn-more {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.learn-more:hover {
  color: var(--primary-dark);
}

.learn-more i {
  margin-left: 0.3rem;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.learn-more:hover i {
  transform: translateX(3px);
}

.price-notes {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--secondary-color);
  border-radius: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

.price-notes p {
  max-width: 800px;
  margin: 0 auto;
}

/* Price Comparison Section */
.price-comparison {
  background-color: var(--secondary-color);
  padding: 5rem 2rem;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-tier {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid var(--gray-light);
}

.price-tier.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--accent-color);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-tier h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.price-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-medium);
}

.price-tier ul {
  list-style: none;
  margin-bottom: 2rem;
}

.price-tier ul li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.price-tier ul li i {
  color: var(--success-color);
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.price-tier .cta-button {
  display: block;
  text-align: center;
  width: 100%;
}

.price-tier .secondary-button {
  display: block;
  text-align: center;
  width: 100%;
}

/* About Section */
.about {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-color);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  padding: 0.8rem;
  border-radius: 0.5rem;
}

.feature i {
  color: var(--primary-color);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-buttons .cta-button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}

.cta-buttons .cta-button i {
  margin-right: 0.5rem;
}

.cta-buttons .secondary-button {
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
}

.cta-buttons .secondary-button i {
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
      grid-template-columns: 1fr;
  }
  
  .about-image {
      order: -1;
      max-width: 600px;
      margin: 0 auto;
  }
  
  .hero h2 {
      font-size: 2rem;
  }
  
  .hero p {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
      padding: 4rem 1rem;
  }
  
  .services, .price-comparison, .about {
      padding: 3rem 1rem;
  }
  
  .price-table {
      grid-template-columns: 1fr;
  }
  
  .price-tier.featured {
      transform: none;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .cta-buttons a {
      width: 100%;
      max-width: 300px;
      text-align: center;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h2 {
      font-size: 1.8rem;
  }
  
  .section-title h2 {
      font-size: 1.5rem;
  }
  
  .service-card {
      max-width: 100%;
  }
}