:root {
    --color-primary: #f39c12;
    --color-primary-dark: #e67e22;
    --color-accent: #f39c12;
    --color-accent-dark: #e67e22;
    --color-text: #374151;
    --color-text-light: #6b7280;
    --color-bg: #ffffff;
    --color-bg-light: #f9fafb;
    --color-border: #e5e7eb;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-gray {
  color: #374151;
}

.text-orange {
  color: #f39c12;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 3rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f39c12;
}

.btn-primary {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: #e67e22;
}

.btn-secondary {
  background: none;
  color: #374151;
  border: 2px solid #d1d5db;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: #f39c12;
  color: #f39c12;
}

.btn-large {
  padding: 0.75rem 2rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 0.5rem;
}

.close-icon {
  display: none;
}

.mobile-menu-btn.active .menu-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.nav-mobile.active {
  display: flex;
}

.nav-link-mobile {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-link-mobile:hover {
  color: #f39c12;
}

.btn-primary-mobile {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
  text-align: left;
}

.btn-primary-mobile:hover {
  background-color: #e67e22;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-mobile {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
}

.hero-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

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

.stat-number {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #f39c12;
}

.stat-label {
  color: #6b7280;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Services Section */
.services {
  padding: 5rem 1.5rem;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: #f39c12;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background-color 0.3s;
}

.service-icon svg {
  color: #f39c12;
  transition: color 0.3s;
}

.service-card:hover .service-icon {
  background-color: #f39c12;
}

.service-card:hover .service-icon svg {
  color: #fff;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.service-description {
  color: #6b7280;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* About Section */
.about {
  padding: 5rem 1.5rem;
  background-color: #f9fafb;
}

.about-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.values-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-icon {
  color: #f39c12;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.value-item span {
  font-size: 1.125rem;
  color: #374151;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: 5rem 1.5rem;
  background-color: #fff;
}

.contact-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: #f39c12;
}

.contact-label {
  color: #374151;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #6b7280;
}

.contact-value a {
  color: #f39c12;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-value a:hover {
  color: #e67e22;
  text-decoration: underline;
}

.business-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 0.5rem;
}

.business-hours-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

.business-hours-text {
  color: #6b7280;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #f39c12;
}

.form-textarea {
  resize: none;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  background-color: #111827;
  color: #fff;
  padding: 3rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  height: 3rem;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color: #9ca3af;
  max-width: 28rem;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  padding: 0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #f39c12;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Service Pages Styles */
.service-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
  text-align: center;
}

.service-hero-content {
  max-width: 56rem;
  margin: 0 auto;
}

.service-hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-hero-title {
    font-size: 3.5rem;
  }
}

.service-section {
  padding: 4rem 1.5rem;
}

.service-section.bg-gray {
  background-color: #f9fafb;
}

.service-content {
  max-width: 56rem;
  margin: 0 auto;
}

.service-section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #374151;
}

.service-text {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.mb-large {
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.service-section.bg-gray .feature-card {
  background-color: #fff;
}

.feature-card:hover {
  border-color: #f39c12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  color: #f39c12;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  padding: 1.5rem;
}

.process-number {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 1rem;
  font-weight: bold;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.process-description {
  color: #6b7280;
  line-height: 1.6;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tech-category {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.service-section.bg-gray .tech-category {
  background-color: #fff;
}

.tech-category-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

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

.tech-list li {
  color: #6b7280;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color: #fff;
  text-align: center;
}

.cta-content {
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-section .btn-primary {
  background-color: #fff;
  color: #f39c12;
}

.cta-section .btn-primary:hover {
  background-color: #f9fafb;
}

.platforms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.platform-card {
  padding: 2rem;
  background-color: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.service-section.bg-gray .platform-card {
  background-color: #fff;
}

.platform-card:hover {
  border-color: #f39c12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.platform-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

.platform-description {
  color: #6b7280;
  margin-bottom: 1rem;
}

.platform-services {
  list-style: none;
  padding: 0;
}

.platform-services li {
  padding: 0.5rem 0;
  color: #374151;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
}

.benefit-number {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 1rem;
  font-weight: bold;
  opacity: 0.3;
}

.benefit-icon {
  margin: 0 auto 1rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  color: #f39c12;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.benefit-description {
  color: #6b7280;
  line-height: 1.6;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.approach-card {
  padding: 2rem;
  background-color: #fff;
  border-left: 4px solid #f39c12;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.approach-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

.approach-description {
  color: #6b7280;
  line-height: 1.6;
}

.security-layers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .security-layers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .security-layers {
    grid-template-columns: repeat(3, 1fr);
  }
}

.layer-item {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.service-section.bg-gray .layer-item {
  background-color: #fff;
}

.layer-number {
  font-size: 1rem;
  color: #fff;
  background-color: #f39c12;
  width: 5rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.layer-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.layer-description {
  color: #6b7280;
  line-height: 1.6;
}

.threats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .threats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .threats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.threat-card {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  border-top: 3px solid #f39c12;
}

.service-section.bg-gray .threat-card {
  background-color: #fff;
}

.threat-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.threat-description {
  color: #6b7280;
  line-height: 1.6;
}

.app-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .app-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .app-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-type-card {
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.service-section.bg-gray .app-type-card {
  background-color: #fff;
}

.app-type-card:hover {
  border-color: #f39c12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.app-type-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #f39c12;
}

.app-type-description {
  color: #6b7280;
  line-height: 1.6;
}

.features-list {
  max-width: 56rem;
  margin: 0 auto;
}

.feature-list-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.service-section.bg-gray .feature-list-item {
  background-color: #fff;
}

.feature-check {
  color: #f39c12;
  flex-shrink: 0;
}

.feature-list-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

.feature-list-description {
  color: #6b7280;
}

.db-tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .db-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.db-tech-card {
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.service-section.bg-gray .db-tech-card {
  background-color: #fff;
}

.db-tech-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f39c12;
}

.db-tech-description {
  color: #6b7280;
  margin-bottom: 1rem;
}

.db-tech-list {
  list-style: none;
  padding: 0;
}

.db-tech-list li {
  padding: 0.5rem 0;
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
}

.db-tech-list li:last-child {
  border-bottom: none;
}

.services-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-breakdown {
    grid-template-columns: repeat(3, 1fr);
  }
}

.breakdown-item {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.service-section.bg-gray .breakdown-item {
  background-color: #fff;
}

.breakdown-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #374151;
}

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

.breakdown-list li {
  padding: 0.5rem 0;
  color: #6b7280;
  position: relative;
  padding-left: 1.5rem;
}

.breakdown-list li:before {
  content: "•";
  color: #f39c12;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.best-practices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .best-practices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .best-practices-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.practice-card {
  text-align: center;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}

.service-section.bg-gray .practice-card {
  background-color: #fff;
}

.practice-icon {
  margin: 0 auto 1rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(243, 156, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.practice-icon svg {
  color: #f39c12;
}

.practice-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.practice-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Make service cards clickable links */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* CMS Integration Styles */
.flash-messages {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 1.5rem;
}

.flash-success {
    padding: 12px 16px;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-error {
    padding: 12px 16px;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-info {
    padding: 12px 16px;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.has-error .form-input,
.has-error .form-textarea {
    border-color: #dc3545;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #374151;
    text-decoration: none;
}

.service-body-content {
    /* Style for service detail body content */
}

.service-body-content .service-section {
    padding: 4rem 1.5rem;
}

.service-body-content .service-section.bg-gray {
    background-color: #f9fafb;
}

.about-text-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-switcher a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.lang-switcher a.active {
    color: #f39c12;
    font-weight: bold;
}

/* Shortcode overrides for WSD theme */
.shortcode-hero {
    padding: 8rem 1.5rem 4rem !important;
    background: linear-gradient(135deg, #f9fafb 0%, #fff 100%) !important;
}

.shortcode-cta {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
}

a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
