/* ==========================================================================
   BRISK SUDS - SCANDINAVIAN CLEAN DESIGN STYLE
   Modern, professional scientific knowledge platform
   ========================================================================== */

/* CSS RESET & NORMALIZE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Scandinavian Clean Style
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 500;
  line-height: 1.3;
  color: #1E5A8E;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 600;
}

h2 {
  font-size: 32px;
  font-weight: 500;
}

h3 {
  font-size: 24px;
  font-weight: 500;
}

h4 {
  font-size: 18px;
  font-weight: 500;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
}

a {
  color: #2C8AAD;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1E5A8E;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* CONTAINER & LAYOUT
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER & NAVIGATION - Minimal Scandinavian
   ========================================================================== */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8EDF2;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-size: 15px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2C8AAD;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #1E5A8E;
}

.nav-menu li a:hover::after {
  width: 100%;
}

/* MOBILE MENU - Scandinavian Minimalist
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #1E5A8E;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 90, 142, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #2C8AAD;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transition: right 0.4s ease;
  padding: 80px 32px 32px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #1E5A8E;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2C3E50;
  padding: 12px 0;
  border-bottom: 1px solid #F0F4F8;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #1E5A8E;
}

/* BUTTONS - Clean Scandinavian Style
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #1E5A8E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(30, 90, 142, 0.2);
}

.btn-primary:hover {
  background-color: #2C8AAD;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 90, 142, 0.3);
}

.btn-secondary {
  background-color: #F0F4F8;
  color: #1E5A8E;
  border: 2px solid #1E5A8E;
}

.btn-secondary:hover {
  background-color: #1E5A8E;
  color: #FFFFFF;
}

.btn-link {
  color: #2C8AAD;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-link:hover {
  color: #1E5A8E;
}

/* HERO SECTION - Minimal & Clean
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: #1E5A8E;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  font-size: 14px;
  color: #2C8AAD;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* PAGE HERO - Consistent Across Pages
   ========================================================================== */
.page-hero {
  background-color: #F0F4F8;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 40px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.page-subheadline {
  font-size: 18px;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto 16px;
}

.last-updated {
  font-size: 14px;
  color: #7A8B99;
  font-style: italic;
}

/* VALUE PROPOSITION - Clean Card Layout
   ========================================================================== */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.value-proposition h2 {
  text-align: center;
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto 48px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E8EDF2;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.1);
  border-color: #2C8AAD;
}

.value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
}

/* SERVICES - Grid Layout
   ========================================================================== */
.services-overview {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.services-overview h2 {
  text-align: center;
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.12);
}

.service-card h3 {
  font-size: 22px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: #2C3E50;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: #2C8AAD;
  margin: 20px 0;
}

.services-overview .btn-primary {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

/* SERVICES DETAILED
   ========================================================================== */
.services-detailed {
  padding: 60px 20px;
}

.service-detail-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #E8EDF2;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.service-detail-card h2 {
  font-size: 28px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.service-features {
  margin: 24px 0;
  padding-left: 0;
}

.service-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  color: #2C3E50;
  border-bottom: 1px solid #F0F4F8;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C8AAD;
  font-weight: 700;
  font-size: 18px;
}

/* STATISTICS - Minimal Display
   ========================================================================== */
.statistics {
  padding: 60px 20px;
  background-color: #1E5A8E;
  color: #FFFFFF;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-item h3 {
  font-size: 48px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: #F0F4F8;
  margin-bottom: 0;
}

/* TESTIMONIALS - Clean & Readable
   ========================================================================== */
.testimonials {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.testimonials h2 {
  text-align: center;
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 14px;
  color: #2C3E50;
  margin-bottom: 0;
}

.testimonial-author strong {
  color: #1E5A8E;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* CTA SECTION - Clean Call to Action
   ========================================================================== */
.cta-section {
  padding: 80px 20px;
  background-color: #1E5A8E;
  text-align: center;
  color: #FFFFFF;
}

.cta-section h2 {
  font-size: 36px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #F0F4F8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #1E5A8E;
}

.cta-section .btn-primary:hover {
  background-color: #F0F4F8;
}

.cta-section .btn-secondary {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1E5A8E;
}

.contact-info {
  font-size: 16px;
  color: #F0F4F8;
}

/* CONTENT LAYOUTS
   ========================================================================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.content-block {
  flex: 1 1 400px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #E8EDF2;
}

.content-block h2 {
  font-size: 28px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

/* MISSION & VISION
   ========================================================================== */
.mission-vision {
  padding: 60px 20px;
}

.values-section {
  margin-top: 48px;
  padding: 32px;
  background-color: #F0F4F8;
  border-radius: 12px;
}

.values-section h3 {
  font-size: 24px;
  color: #1E5A8E;
  margin-bottom: 24px;
  text-align: center;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.values-list li {
  padding: 16px;
  padding-left: 48px;
  background-color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  font-size: 16px;
  color: #2C3E50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.values-list li:before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #2C8AAD;
  font-weight: 700;
  font-size: 20px;
}

/* STORY SECTION
   ========================================================================== */
.story {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.story h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 24px;
  text-align: center;
}

.story p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* EXPERTISE AREAS
   ========================================================================== */
.expertise-areas {
  padding: 60px 20px;
}

.expertise-areas h2 {
  text-align: center;
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.expertise-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E8EDF2;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.1);
}

.expertise-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.expertise-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 15px;
  color: #2C3E50;
}

/* METHODOLOGY
   ========================================================================== */
.methodology {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.methodology h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 24px;
  text-align: center;
}

.methodology p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* PROCESS STEPS - Visual Flow
   ========================================================================== */
.process {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.process h2 {
  text-align: center;
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #F0F4F8;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: #2C3E50;
}

/* RESEARCH & ARTICLES
   ========================================================================== */
.research-filter {
  padding: 40px 20px;
  background-color: #F0F4F8;
}

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.search-input {
  padding: 14px 20px;
  border: 1px solid #E8EDF2;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #2C8AAD;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-tag {
  padding: 8px 16px;
  background-color: #FFFFFF;
  border: 1px solid #E8EDF2;
  border-radius: 20px;
  font-size: 14px;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tag:hover,
.filter-tag.active {
  background-color: #1E5A8E;
  color: #FFFFFF;
  border-color: #1E5A8E;
}

/* FEATURED RESEARCH
   ========================================================================== */
.featured-research {
  padding: 60px 20px;
}

.featured-research h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 32px;
  text-align: center;
}

.featured-article {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.article-category {
  display: inline-block;
  padding: 6px 12px;
  background-color: #2C8AAD;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.article-date {
  font-size: 14px;
  color: #7A8B99;
}

.featured-article h3 {
  font-size: 28px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.featured-article p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  margin-bottom: 16px;
}

.reading-time {
  font-size: 14px;
  color: #7A8B99;
  font-style: italic;
}

/* RESEARCH GRID
   ========================================================================== */
.research-grid {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.article-card {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.12);
}

.article-card .article-category {
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.article-card p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-card .article-date {
  margin-top: 12px;
}

/* FACT CHECK
   ========================================================================== */
.fact-check {
  padding: 60px 20px;
}

.fact-check h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 32px;
  text-align: center;
}

.fact-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.fact-check-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.fact-check-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.verdict {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.verdict-partial {
  background-color: #FFF3CD;
  color: #856404;
}

.verdict-false {
  background-color: #F8D7DA;
  color: #721C24;
}

.verdict-true {
  background-color: #D4EDDA;
  color: #155724;
}

.fact-check-card p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
}

/* NEWSLETTER
   ========================================================================== */
.newsletter {
  padding: 60px 20px;
  background-color: #F0F4F8;
  text-align: center;
}

.newsletter h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 250px;
  padding: 14px 20px;
  border: 1px solid #E8EDF2;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #2C8AAD;
}

.privacy-notice {
  font-size: 13px;
  color: #7A8B99;
}

.privacy-notice a {
  color: #2C8AAD;
  text-decoration: underline;
}

/* KNOWLEDGE BASE
   ========================================================================== */
.kb-navigation {
  padding: 60px 20px;
}

.kb-navigation h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.category-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E8EDF2;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.1);
  border-color: #2C8AAD;
}

.category-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.category-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.category-card p {
  font-size: 15px;
  color: #2C3E50;
}

/* FEATURED CONTENT
   ========================================================================== */
.featured-content {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.featured-content h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.knowledge-article {
  flex: 1 1 320px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}

.knowledge-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.12);
}

.difficulty-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #2C8AAD;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.knowledge-article h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.knowledge-article p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 12px;
}

.knowledge-article .reading-time {
  font-size: 14px;
  color: #7A8B99;
  font-style: italic;
}

/* GLOSSARY PREVIEW
   ========================================================================== */
.glossary-preview {
  padding: 60px 20px;
}

.glossary-preview h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 16px;
  text-align: center;
}

.glossary-preview > p {
  text-align: center;
  font-size: 16px;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto 48px;
}

.glossary-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.term-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #F0F4F8;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #2C8AAD;
  margin-bottom: 20px;
}

.term-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.term-card p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 0;
}

/* LEARNING PATHS
   ========================================================================== */
.learning-paths {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.learning-paths h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.paths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.path-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.12);
}

.path-card h3 {
  font-size: 24px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.path-card p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 16px;
}

.path-info {
  font-size: 14px;
  color: #7A8B99;
  font-weight: 600;
}

/* SEARCH BAR PROMINENT
   ========================================================================== */
.search-bar-prominent {
  display: flex;
  gap: 12px;
  max-width: 700px;
  margin: 32px auto 0;
  flex-wrap: wrap;
}

.search-input-large {
  flex: 1 1 300px;
  padding: 16px 24px;
  border: 2px solid #E8EDF2;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.search-input-large:focus {
  outline: none;
  border-color: #2C8AAD;
}

/* CONTACT PAGE
   ========================================================================== */
.contact-options {
  padding: 60px 20px;
}

.contact-options h2 {
  font-size: 36px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.contact-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #E8EDF2;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.1);
}

.contact-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  color: #2C3E50;
}

/* CONTACT FORM
   ========================================================================== */
.contact-form-section {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.form-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-content h2 {
  font-size: 28px;
  color: #1E5A8E;
  margin-bottom: 32px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E8EDF2;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2C8AAD;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}

.form-content .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* CONTACT INFORMATION
   ========================================================================== */
.contact-information {
  padding: 60px 20px;
}

.contact-information h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-block {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 12px;
  margin-bottom: 20px;
}

.info-block h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 0;
}

.info-block a {
  color: #2C8AAD;
  font-weight: 600;
}

/* LOCATION SECTION
   ========================================================================== */
.location-section {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.location-section h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 16px;
  text-align: center;
}

.location-section p {
  font-size: 16px;
  color: #2C3E50;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.location-info {
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 12px;
  text-align: center;
}

/* LEGAL PAGES
   ========================================================================== */
.legal-content {
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.content-wrapper h2 {
  font-size: 24px;
  color: #1E5A8E;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  font-size: 15px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 16px;
}

.content-wrapper ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-wrapper ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #2C3E50;
  margin-bottom: 8px;
  list-style: disc;
}

.rights-section,
.cookie-category {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  border-left: 4px solid #2C8AAD;
}

.related-links {
  margin-top: 48px;
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
}

.related-links h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.related-links ul {
  padding-left: 0;
}

.related-links li {
  list-style: none;
  margin-bottom: 8px;
}

.related-links li a {
  color: #2C8AAD;
  font-weight: 600;
}

/* THANK YOU PAGE
   ========================================================================== */
.thank-you-hero {
  padding: 80px 20px;
  background-color: #F0F4F8;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  font-size: 40px;
  color: #1E5A8E;
  margin-bottom: 16px;
}

.thank-you-hero .subheadline {
  font-size: 18px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.confirmation-message {
  font-size: 15px;
  color: #7A8B99;
  font-style: italic;
}

/* NEXT STEPS
   ========================================================================== */
.next-steps {
  padding: 60px 20px;
}

.next-steps h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card {
  flex: 1 1 250px;
  max-width: 320px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2C8AAD;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  color: #2C3E50;
  line-height: 1.6;
}

/* WHILE YOU WAIT
   ========================================================================== */
.while-you-wait {
  padding: 60px 20px;
  background-color: #F0F4F8;
}

.while-you-wait h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 48px;
  text-align: center;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 280px;
  max-width: 320px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 90, 142, 0.12);
}

.suggestion-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.suggestion-card h3 {
  font-size: 20px;
  color: #1E5A8E;
  margin-bottom: 12px;
}

.suggestion-card p {
  font-size: 15px;
  color: #2C3E50;
  margin-bottom: 16px;
}

.testimonial-section {
  padding: 60px 20px;
}

.return-home {
  padding: 60px 20px;
  text-align: center;
}

.return-home h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 24px;
}

.additional-actions {
  padding: 60px 20px;
  background-color: #F0F4F8;
  text-align: center;
}

.additional-actions h2 {
  font-size: 32px;
  color: #1E5A8E;
  margin-bottom: 32px;
}

.action-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-info {
  font-size: 18px;
  color: #2C8AAD;
  font-weight: 600;
  margin-top: 16px;
}

/* FOOTER - Minimal Scandinavian
   ========================================================================== */
footer {
  background-color: #1E5A8E;
  color: #FFFFFF;
  padding: 60px 20px 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  color: #F0F4F8;
  margin-bottom: 8px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-section ul {
  padding-left: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  font-size: 14px;
  color: #F0F4F8;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 244, 248, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #F0F4F8;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #2C3E50;
  margin-bottom: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-accept-all {
  background-color: #1E5A8E;
  color: #FFFFFF;
}

.btn-reject-all {
  background-color: #F0F4F8;
  color: #2C3E50;
  border: 1px solid #E8EDF2;
}

.btn-cookie-settings {
  background-color: transparent;
  color: #2C8AAD;
  border: 1px solid #2C8AAD;
}

/* COOKIE MODAL
   ========================================================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #2C3E50;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.cookie-modal h2 {
  font-size: 24px;
  color: #1E5A8E;
  margin-bottom: 24px;
}

.cookie-category-item {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F0F4F8;
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category-item h3 {
  font-size: 18px;
  color: #1E5A8E;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E8EDF2;
  border-radius: 24px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: #2C8AAD;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-item p {
  font-size: 14px;
  color: #2C3E50;
  margin-bottom: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - Mobile First
   ========================================================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .value-grid,
  .services-grid,
  .expertise-grid,
  .stats-grid,
  .testimonial-grid,
  .category-grid,
  .contact-cards-grid,
  .info-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card,
  .service-card,
  .expertise-card,
  .stat-item,
  .testimonial-card,
  .category-card,
  .contact-card,
  .info-block {
    max-width: 100%;
    width: 100%;
  }

  .content-wrapper {
    padding: 24px;
  }

  .form-content {
    padding: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    text-align: center;
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner .btn {
    flex: 1 1 auto;
  }

  .search-bar-prominent {
    flex-direction: column;
  }

  .search-bar-prominent .btn {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .cta-buttons,
  .action-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn,
  .action-buttons .btn {
    width: 100%;
  }
}

/* ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-card,
.service-card,
.article-card,
.testimonial-card {
  animation: fadeIn 0.5s ease forwards;
}

/* ACCESSIBILITY
   ========================================================================== */
.btn:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid #2C8AAD;
  outline-offset: 2px;
}

a:focus {
  outline: 2px solid #2C8AAD;
  outline-offset: 2px;
}

/* PRINT STYLES
   ========================================================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 18pt;
  }

  h3 {
    font-size: 14pt;
  }
}

/* END OF STYLES */
