<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
body {
    font-family: 'Segoe UI', 'Fira Code', Arial, sans-serif;
    background: #f4f7fa;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

/* === NEW MODERN DESIGN === */
.new-header {
  background: #fff;
  box-shadow: 0 2px 12px 0 #e0e6ed;
  border-bottom: 2px solid #008db9;
}
.new-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}
.header-logo {
  height: 54px;
  width: 54px;
  border-radius: 12px;
  background: #f4f7fa;
  box-shadow: 0 2px 8px #008db933;
}
.new-navbar ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.new-navbar a {
  text-decoration: none;
  color: #008db9;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.new-navbar a:hover {
  background: #e6f7ff;
  color: #005a7a;
}

.new-hero-box {
  background: #e6f7ff;
  border-bottom: 2px solid #008db9;
  box-shadow: 0 4px 24px 0 #008db922;
}
.new-hero-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-main-logo {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: #fff;
  box-shadow: 0 2px 8px #008db933;
}
.new-hero-content h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0.5rem 0 0.7rem 0;
  color: #005a7a;
  letter-spacing: 1px;
}
.new-hero-content p {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1.2rem;
}
.new-cta {
  background: #008db9;
  color: #fff;
  border-radius: 8px;
  padding: 0.7rem 1.7rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.new-cta:hover {
  background: #005a7a;
  color: #fff;
}

.new-section {
  padding: 0;
  margin: 0;
  background: transparent;
}
.new-section-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 #008db91a;
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
}
.about-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.about-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f4f7fa;
  box-shadow: 0 2px 8px #008db933;
}
.about-flex h2 {
  margin-top: 0;
  color: #008db9;
  font-size: 2rem;
  font-weight: 800;
}
.about-flex p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.7rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-card {
  background: #f4f7fa;
  border-radius: 14px;
  box-shadow: 0 2px 8px #008db91a;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px #008db933;
  transform: translateY(-4px) scale(1.03);
}
.service-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px #008db933;
}
.service-card h3 {
  color: #008db9;
  margin: 0.5rem 0 0.7rem 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.service-card p {
  color: #333;
  font-size: 1rem;
}

.how-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.how-list li {
  background: #e6f7ff;
  color: #005a7a;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 1px 4px #008db91a;
  flex: 1 1 220px;
}

.why-flex {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.why-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #f4f7fa;
  box-shadow: 0 2px 8px #008db933;
}
.why-flex h2 {
  margin-top: 0;
  color: #008db9;
  font-size: 2rem;
  font-weight: 800;
}
.why-quote {
  font-style: italic;
  color: #005a7a;
  margin-bottom: 0.7rem;
}
.why-highlight {
  color: #b90042;
  font-weight: 700;
}
.why-message {
  color: #333;
  font-size: 1.1rem;
}

.terminal-contact {
  background: #181c20;
  color: #00ff88;
  border-radius: 12px;
  box-shadow: 0 2px 16px #008db91a;
  padding: 2.5rem 2rem;
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Fira Code', 'Consolas', monospace;
}
.terminal-contact h2 {
  color: #00ffaa;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.terminal-contact label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #00ffaa;
}
.terminal-contact input,
.terminal-contact textarea {
  width: 100%;
  background: #23272e;
  border: none;
  border-bottom: 2px solid #00ffaa;
  color: #00ff88;
  font: inherit;
  padding: 0.5rem 0.3rem;
  margin-bottom: 0.5rem;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}
.terminal-contact input:focus,
.terminal-contact textarea:focus {
  border-color: #b90042;
}
.terminal-contact button {
  margin-top: 1.5rem;
  background: #00ffaa;
  border: none;
  color: #181c20;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-family: inherit;
  border-radius: 6px;
  transition: background 0.3s;
}
.terminal-contact button:hover {
  background: #b90042;
  color: #fff;
}
.confirmation {
  margin-top: 2rem;
  display: none;
  white-space: pre-wrap;
  color: #00ffaa;
  font-size: 1rem;
}

.new-footer {
  background: #fff;
  border-top: 2px solid #008db9;
  box-shadow: 0 -2px 24px 0 #008db91a;
  padding: 2rem 0 1rem 0;
  margin-top: 3rem;
}
.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 1rem auto;
  gap: 2rem;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f4f7fa;
  box-shadow: 0 2px 8px #008db933;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: #008db9;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #b90042;
}
.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.footer-copy {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .new-header-bar, .footer-flex, .new-section-box {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 0.7rem;
  }
  .about-flex, .why-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer-links {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .new-header-bar, .footer-flex, .new-section-box {
    padding: 0.7rem 0.3rem;
  }
  .footer-logo {
    width: 32px;
    height: 32px;
  }
  .header-logo {
    width: 36px;
    height: 36px;
  }
  .hero-main-logo, .about-logo, .why-logo {
    width: 48px;
    height: 48px;
  }
}

.light-dark-toggle {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}
.light-dark-toggle img {
  width: 40px;
  height: 40px;
}

/* Debugging - Remove this section in production */
/* * {
    outline: 1px solid rgba(255, 0, 0, 0.5) !important;
} */</pre></body></html>