/* Template 43 - Sky Blue / Cloud White Minimalist */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Montserrat:wght@600;700;800&display=swap");

:root {
  --bg-primary: #f0f7ff;
  --bg-secondary: #e3f2fd;
  --bg-accent: #ffffff;
  
  --text-primary: #1e3a5f;
  --text-secondary: #4a6b8a;
  --text-muted: #7a9ab8;
  
  --accent-blue: #2196f3;
  --accent-sky: #64b5f6;
  --accent-light: #bbdefb;
}

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

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

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

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

/* Header */
.site-header {
  background: var(--bg-accent);
  border-bottom: 3px solid var(--accent-sky);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(33, 150, 243, 0.1);
}

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

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

.site-logo a:hover {
  color: var(--accent-sky);
  transform: translateY(-2px);
}

.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: 500;
  transition: all 0.3s ease;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
}

.site-nav a:hover {
  color: var(--accent-blue);
  background: var(--bg-secondary);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: right;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.section.head::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-sky), var(--accent-light));
}

.section.head h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--accent-blue);
  letter-spacing: -2px;
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin-left: auto;
  line-height: 1.8;
  font-weight: 400;
}

/* Section Styling */
.section {
  padding: 5.5rem 0;
}

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

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

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

/* Footer */
.footer {
  background: var(--bg-accent);
  border-top: 3px solid var(--accent-sky);
  padding: 3.5rem 0 1.5rem;
  margin-top: 5rem;
}

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

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

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-light);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.7s 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.75rem;
  color: var(--accent-blue);
  margin-top: 18px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
