/* Template 51 - Dark Emerald Corporate */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@300;400;600&display=swap");

:root {
  --emerald: #087f5b;
  --dark-emerald: #064e3b;
  --mint: #6ee7b7;
  --charcoal: #1e293b;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--white);
  font-weight: 400;
  overflow-x: hidden;
}

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

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--emerald);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.site-logo a {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--emerald);
  text-decoration: none;
  letter-spacing: -1px;
  transition: all 0.3s ease;
}

.site-logo a:hover {
  color: var(--dark-emerald);
  transform: translateX(5px);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.site-nav a:hover {
  color: var(--emerald);
  background: var(--light-bg);
}

.section.head {
  padding: 8rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  position: relative;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(8, 127, 91, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.section.head h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  letter-spacing: -2px;
  animation: slide-up 1s ease;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

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

.section header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--emerald);
  letter-spacing: -1px;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.footer {
  background: var(--charcoal);
  padding: 3rem 0 1rem;
  border-top: 4px solid var(--emerald);
  margin-top: 5rem;
  color: var(--white);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--mint);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

@keyframes corporate-fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: corporate-fade 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.8rem;
  color: var(--emerald);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
