/* Simplified CSS for Dreamweaver WYSIWYG Editing */
/* All CSS variables replaced with actual values for better Design View rendering */

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  color: #111827;
  background-color: #f9fafb;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.header-content {
  padding: 16px 0;
}

.logo {
  max-width: 280px;
  height: auto;
}

/* Navigation Table */
.nav-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

.nav-table td {
  padding: 8px 16px;
  text-align: center;
  border-right: 1px solid #e5e7eb;
}

.nav-table td:last-child {
  border-right: none;
}

.nav-link {
  color: #4b5563;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link:hover {
  color: #1e3a8a;
  background-color: #f3f4f6;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 80px 24px;
  text-align: center;
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #1e3a8a;
  color: white;
}

.btn-primary:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1e3a8a;
}

.btn-white {
  background-color: white;
  color: #1e3a8a;
}

.btn-white:hover {
  background-color: #f3f4f6;
}

/* Services Section */
.services {
  background-color: white;
  padding: 80px 24px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e3a8a;
  text-align: center;
  margin: 0 0 48px 0;
}

/* Service Cards Table */
.services-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 24px;
}

.service-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 16px 0;
}

.service-card p {
  color: #4b5563;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.service-card ul {
  margin: 16px 0;
  padding-left: 20px;
}

.service-card li {
  color: #4b5563;
  margin: 8px 0;
}

/* Content Section */
.content-section {
  padding: 80px 24px;
  background-color: #f9fafb;
}

/* Content Grid Table */
.content-table {
  width: 100%;
  border-collapse: collapse;
}

.content-table td {
  padding: 24px;
  vertical-align: middle;
}

.content-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 24px 0;
}

.content-text p {
  font-size: 18px;
  color: #4b5563;
  margin: 0 0 16px 0;
  line-height: 1.7;
}

.content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 48px 24px 32px 24px;
  text-align: center;
}

.footer-nav {
  margin-bottom: 24px;
}

.footer-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  padding: 0 12px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-separator {
  color: #4b5563;
  padding: 0 8px;
}

.footer-bottom {
  color: #9ca3af;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Mobile Menu Toggle - Hidden by default */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: #111827;
  border-radius: 9999px;
}

/* Responsive - Basic media queries */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .services-table,
  .content-table {
    display: block;
  }

  .services-table tbody,
  .services-table tr,
  .services-table td,
  .content-table tbody,
  .content-table tr,
  .content-table td {
    display: block;
    width: 100%;
  }

  .services-table {
    border-spacing: 0;
  }

  .service-card {
    margin-bottom: 24px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-table {
    display: none;
  }

  .nav-table.active {
    display: table;
    width: 100%;
  }

  .nav-table td {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}

/* Print Styles */
@media print {
  .header {
    position: static;
  }

  .menu-toggle {
    display: none;
  }

  .btn {
    border: 1px solid #1e3a8a;
  }
}
