.main-content {
  padding-top: 80px;
}

.hero-section {
  background: linear-gradient(rgba(46, 125, 50, 0.8), rgba(46, 125, 50, 0.6)), url('images/hero1-modern-office-technology_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 80%, rgba(76, 175, 80, 0.3), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(46, 125, 50, 0.3), transparent 50%);
  animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

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

.mission-section {
  background: var(--bg-secondary);
  padding: 100px 0;
  text-align: center;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
}

.mission-title {
  color: var(--primary);
  margin-bottom: 30px;
}

.mission-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.services-overview-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  color: var(--primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-overview-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

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

.about-hero-section {
  background: linear-gradient(rgba(46, 125, 50, 0.8), rgba(46, 125, 50, 0.6)), url('images/about-tech-team-collaboration_orig.jpg') center/cover;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
  text-align: center;
}

.company-background-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.company-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.team-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.team-member-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team-member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
}

.team-member-name {
  color: var(--primary);
  margin-bottom: 10px;
}

.team-member-role {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-bio {
  color: var(--text-secondary);
  line-height: 1.6;
}

.values-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.value-content h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.service-detail-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-content h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.service-detail-list {
  list-style: none;
  margin: 20px 0;
}

.service-detail-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-detail-list li:last-child {
  border-bottom: none;
}

.service-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
}

.process-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

.process-timeline {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
  transform: translateX(-50%);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.process-step-content {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  width: 45%;
  border: 1px solid var(--border-color);
}

.process-step:nth-child(even) .process-step-content {
  margin-left: auto;
}

.process-step-title {
  color: var(--primary);
  margin-bottom: 15px;
}

.compliance-section {
  background: var(--bg-secondary);
  padding: 100px 0;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.compliance-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
  border-left: 5px solid var(--primary);
}

.compliance-card h4 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-section {
  background: var(--bg-primary);
  padding: 100px 0;
}

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

.contact-info-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-content h4 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 16px;
}

.contact-info-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.business-hours-section {
  background: var(--accent);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hours-item {
  text-align: center;
}

.hours-day {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}

.hours-time {
  font-size: 14px;
  opacity: 0.9;
}

.client-logos-section {
  background: var(--bg-secondary);
  padding: 80px 0;
  text-align: center;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.client-logo {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 30px 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .services-grid,
  .team-grid,
  .values-grid,
  .compliance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    padding-left: 80px;
  }
  
  .process-step:nth-child(even) {
    flex-direction: row;
  }
  
  .process-step-number {
    left: 30px;
    transform: translateX(-50%);
  }
  
  .process-step-content {
    width: 100%;
    margin-left: 0 !important;
  }
  
  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-section,
  .about-hero-section {
    background-attachment: scroll;
  }
  
  .client-logos-grid {
    grid-template-columns: 1fr;
  }
}