/* Shared/Common Styles */

/* Content Section */
.content-section {
  padding: 6rem 0;
  background-color: #fff;
}

/* Mobile header accommodation */
@media (max-width: 768px) {
  .content-section {
    padding: 6rem 0 4rem !important;
  }
}

.content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #333;
  position: relative;
}

.content h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #4CAF50;
}

.content p {
  margin-bottom: 1.5rem;
  color: #666;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #4CAF50;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
}

/* Company Details */
.company-details {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #4CAF50;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

.company-details h2 {
  margin-bottom: 1.5rem;
}

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

.detail-item {
  margin-bottom: 1rem;
}

.detail-item strong {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.detail-item p {
  color: #333;
  margin: 0;
}

/* Error Pages */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.error-content h1 {
  font-size: 6rem;
  font-weight: 700;
  color: #4CAF50;
  margin-bottom: 1rem;
}

.error-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.error-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}