/* Standardized HTML Template Improvements */

/* Common fixes for all HTML files */
.standardized-head {
  /* Consistent meta tags and CSS loading */
}

.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
  padding: 120px 0 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-banner .inner {
  position: relative;
  z-index: 2;
}

.page-banner h1, .page-banner h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Content sections */
.content-section {
  padding: 80px 0;
  background: #ffffff;
}

.content-section:nth-child(even) {
  background: #f8fafc;
}

/* Typography improvements */
.content-section h3 {
  color: var(--primary-blue);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.content-section h4 {
  color: var(--primary-blue);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.content-section p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

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

.service-item {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.service-item h4 {
  color: var(--primary-blue);
  margin-bottom: 16px;
}

/* Points/list styling */
.points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.points li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-success);
  font-weight: bold;
  font-size: 18px;
}

/* Contact form improvements */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--primary-blue);
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons .fa-facebook { background: #1877f2; }
.social-icons .fa-twitter { background: #1da1f2; }
.social-icons .fa-linkedin { background: #0077b5; }

/* Responsive improvements */
@media (max-width: 768px) {
  .page-banner {
    padding: 80px 0 60px 0;
  }
  
  .content-section {
    padding: 40px 0;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .contact-form {
    padding: 24px;
  }
}