body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 1rem;
  background: #f8f9fa;
  color: #222;
}
header {
  background: #1a237e;
  color: #fff;
  padding: 1rem 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #ffb300;
}
.hero {
  background: linear-gradient(90deg, rgba(26, 35, 126, 0.92), rgba(57, 73, 171, 0.88)), 
              url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 1rem 4rem 1rem;
  text-align: center;
  position: relative;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta {
  background: #ffb300;
  color: #222;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.cta:hover {
  background: #ffa000;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.feature {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(60,60,100,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #3949ab, #5e72e4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.feature img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
@media (max-width: 800px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  header .container {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(60,60,100,0.12);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: #1a237e;
  margin-top: 0;
}

.service-card ul {
  padding-left: 1.5rem;
}

.service-card li {
  margin-bottom: 0.5rem;
}

.outcome {
  font-style: italic;
  color: #666;
  border-left: 3px solid #ffb300;
  padding-left: 1rem;
  margin-top: 1rem;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.service-grid div {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
}

.service-grid h4 {
  color: #1a237e;
  margin-top: 0;
}

/* Case Studies */
.case-studies {
  text-align: center;
  padding: 3rem 1rem;
  background: #e8eaf6;
  border-radius: 1rem;
  margin: 3rem 0;
}

.case-study {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.case-study:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(60,60,100,0.12);
}

.case-study-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.case-study-image {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 0.75rem;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.industry {
  color: #666;
  font-style: italic;
  font-size: 0.95rem;
  margin: 0.5rem 0 1.5rem 0;
}

/* About Page Images */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(60,60,100,0.12);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin: 2rem auto;
  display: block;
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  .case-studies {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
}

/* Contact Form Enhancements */
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  max-width: 600px;
  margin: 2rem auto;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #1a237e;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1a237e;
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  background: #1a237e;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  margin-top: 1rem;
}

.contact-form button:hover:not(:disabled) {
  background: #0d1642;
  transform: translateY(-1px);
}

.contact-form button:disabled {
  background: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Honeypot Field - Hidden from users, visible to bots */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form Messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  animation: slideIn 0.3s ease-out;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-message-success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-message-error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-message p {
  margin: 0;
  font-weight: 500;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Loading State */
.btn-loading::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hidden Class */
.hidden {
  display: none !important;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem 0;
}

.social-icons a {
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.social-icons img {
  filter: invert(13%) sepia(64%) saturate(2977%) hue-rotate(230deg) brightness(32%) contrast(96%);
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 3rem 1rem 2rem 1rem;
  background: linear-gradient(90deg, rgba(26, 35, 126, 0.9), rgba(57, 73, 171, 0.85)),
              url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.page-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.page-header p {
  font-size: 1.125rem;
  margin-top: 0.5rem;
  opacity: 0.95;
}

/* Content Section */
.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }

  .page-header h2 {
    font-size: 2rem;
  }

  .form-message {
    margin-bottom: 1rem;
  }
}

/* Insights Page - Framework Sections */
.framework {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  padding: 2.5rem 2rem;
  margin-bottom: 3rem;
  border-top: 4px solid #1a237e;
  transition: transform 0.2s, box-shadow 0.2s;
}

.framework:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(60,60,100,0.12);
}

.framework h3 {
  color: #1a237e;
  font-size: 1.75rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e8eaf6;
}

.framework h4 {
  color: #3949ab;
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.framework-phase {
  background: #f8f9fa;
  border-left: 4px solid #ffb300;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.framework-phase:hover {
  border-color: #ffa000;
  box-shadow: 0 2px 8px rgba(255,179,0,0.15);
}

.framework-phase h5 {
  color: #1a237e;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.framework-phase p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.framework-dimension {
  background: #fff;
  border: 2px solid #e8eaf6;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.framework-dimension:hover {
  border-color: #3949ab;
  box-shadow: 0 2px 8px rgba(57,73,171,0.1);
}

.framework-dimension h5 {
  color: #1a237e;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.framework-dimension p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.cost-category {
  background: linear-gradient(to right, #fff9e6, #fff);
  border-left: 4px solid #ffb300;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cost-category:hover {
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(255,179,0,0.15);
}

.cost-category h5 {
  color: #1a237e;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.cost-category p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.governance-layer {
  background: #fff;
  border: 2px solid #e8eaf6;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.governance-layer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #1a237e, #3949ab);
}

.governance-layer:hover {
  border-color: #1a237e;
  box-shadow: 0 2px 8px rgba(26,35,126,0.1);
}

.governance-layer h5 {
  color: #1a237e;
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  margin-left: 0.75rem;
}

.governance-layer p {
  margin: 0;
  margin-left: 0.75rem;
  line-height: 1.7;
  color: #444;
}

/* Resources Section */
.resources-section {
  background: #e8eaf6;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  margin: 3rem 0;
}

.resources-section h3 {
  color: #1a237e;
  font-size: 1.75rem;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}

.resource-item {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(60,60,100,0.08);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.resource-item:last-child {
  margin-bottom: 0;
}

.resource-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60,60,100,0.15);
}

.resource-item h4 {
  color: #1a237e;
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.resource-item p {
  margin: 0;
  line-height: 1.7;
  color: #555;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,35,126,0.2);
}

.cta-section h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #ffb300;
  color: #222;
  padding: 0.875rem 2.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.125rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cta-button:hover {
  background: #ffa000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive adjustments for Insights page */
@media (max-width: 600px) {
  .framework {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .framework h3 {
    font-size: 1.5rem;
  }

  .framework h4 {
    font-size: 1.25rem;
  }

  .framework-phase,
  .framework-dimension,
  .cost-category,
  .governance-layer {
    padding: 1.25rem;
    margin: 1rem 0;
  }

  .resources-section {
    padding: 2rem 1.5rem;
  }

  .resource-item {
    padding: 1.25rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .cta-section h3 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
