/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F8F9FA;
  color: #22324A;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 35%;
  height: auto;
  display: block;
}
a {
  color: #22324A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus { color: #F5A623; }
ul {
  list-style: none;
}
strong, b {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22324A;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p {
  margin-bottom: 18px;
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  p { font-size: 15px; }
}


/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(34, 50, 74, 0.06);
}

/* HERO SECTION */
.hero {
  background: #F7FAFC;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 16px 0 rgba(34,50,74,0.03);
  padding: 56px 0 38px 0;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero.light {
  background: #FFFFFF;
  box-shadow: none;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  gap: 14px;
}
.hero .cta-btn {
  margin-top: 20px;
}


/* FLEX WRAPPERS */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAFAFA;
  border-radius: 12px;
  padding: 22px 18px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(34,50,74,0.06);
}

/* CARD STYLES */
.card, .feature-card, .service-item, .guide-card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 12px rgba(34,50,74,.06);
  transition: box-shadow .22s, transform .18s;
}
.card:hover, .feature-card:hover, .service-item:hover, .guide-card:hover {
  box-shadow: 0 4px 18px rgba(34,50,74,0.11);
  transform: translateY(-3px) scale(1.02);
}

/* SERVICE LIST & GUIDE LIST */
.service-list, .guide-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-item h3, .guide-card h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #22324A;
  flex-wrap: wrap;
}
.service-item span, .guide-card span {
  color: #F5A623;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 10px;
}

.benefit-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 8px;
}

/* BUTTONS / CALL-TO-ACTION */
.cta-btn {
  display: inline-block;
  background: #22324A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 1px 8px rgba(34,50,74,0.15);
  cursor: pointer;
  transition: background .2s, box-shadow .22s, color .21s, transform .18s;
  margin-top: 10px;
  letter-spacing: .02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F5A623;
  color: #22324A;
  box-shadow: 0 2px 16px rgba(34,50,74,0.21);
  transform: translateY(-2px) scale(1.025);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(34,50,74,0.06);
  padding: 0;
  width: 100%;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 78px;
}
.logo {
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22324A;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: #F5A623;
}

/* Hide main-nav on mobile, show burger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #22324A;
  margin-left: 22px;
  cursor: pointer;
  z-index: 90;
  transition: color .2s, transform .15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #F5A623;
  transform: scale(1.1);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,50,74,0.95);
  z-index: 101;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.52, .20, .2, 1.01);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 26px 0 0;
  cursor: pointer;
  transition: color .2s, transform .15s;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F5A623;
  transform: scale(1.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 34px;
  margin-top: 40px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 4px;
  transition: color .21s;
  padding: 4px 8px;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5A623;
  background: #22324A;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    padding: 12px 23px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .logo img {
    width: 130px;
  }
  header .container {
    gap: 0;
    min-height: 65px;
  }
}

/* FOOTER */
footer {
  background: #F4F5F7;
  padding: 38px 0 22px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 12px rgba(34,50,74,0.04);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  gap: 32px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer-contact img {
  width: 46px;
  height: 46px;
}
footer address {
  font-style: normal;
  font-size: 0.97rem;
  color: #22324A;
}
footer a {
  color: #22324A;
  font-size: 0.97rem;
  transition: color .16s;
}
footer a:hover, footer a:focus {
  color: #F5A623;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
  }
  .footer-contact {
    flex-direction: row;
    align-items: center;
  }
}

/* TEXT-BLOCK, LISTS, IMG ICONS, UTILITIES */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #22324A;
  font-size: 1rem;
}
.text-section ul li img {
  width: 22px;
  height: 22px;
  margin-right: 2px;
  filter: grayscale(45%);
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,50,74,0.09);
  border-radius: 18px;
  padding: 20px 32px 18px 30px;
  flex: 1 1 290px;
  max-width: 400px;
  min-width: 240px;
  margin-bottom: 18px;
  color: #22324A;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #22324A;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #22324A;
  margin-top: 3px;
}
.testimonial-card:before {
  content: '\201C';
  color: #F5A623;
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1;
}

@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 16px 12px 13px 16px;
    max-width: 100%;
    min-width: unset;
  }
}

/* RESPONSIVE FLEX & SECTION GENERAL */
@media (max-width: 1024px) {
  .content-grid, .card-container, .feature-grid, .service-list, .guide-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 32px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* SPACING / GAPS IN CARDS AND SECTIONS */
section + section {
  margin-top: 36px;
}

.card + .card, .feature-card + .feature-card {
  margin-top: 6px;
}


/* FORMS (optional for contact page) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #d1d6db;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: #F8F9FA;
  color: #22324A;
  transition: border .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #F5A623;
}

/* LISTS */
ul {
  list-style: none;
}
ul li strong {
  color: #22324A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* EVENT LIST & BENEFITS */
section ul {
  margin-bottom: 14px;
}
section ul li {
  margin-bottom: 8px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #22324A;
  border-top: 2px solid #EFEFEF;
  box-shadow: 0 -2px 16px rgba(34,50,74,0.07);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 20px;
  animation: slideUp 0.44s cubic-bezier(.65,.02,.22,1);
  gap: 16px;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-consent-banner p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-btn-group {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn, .cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  border: none;
  padding: 8px 23px;
  border-radius: 19px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  background: #22324A;
  color: #fff;
  margin: 0 4px;
  transition: background .17s, color .17s, box-shadow .22s;
}
.cookie-accept-btn {
  background: #22324A;
  color: #fff;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #357380;
  color: #fff;
}
.cookie-reject-btn {
  background: #EFEFEF;
  color: #22324A;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #d7d7d7;
}
.cookie-settings-btn {
  background: #F5A623;
  color: #22324A;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ffd084;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    padding: 14px 3vw;
    font-size: .95rem;
  }
  .cookie-btn-group {
    gap: 8px;
  }
}

.cookie-consent-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,50,74,0.92);
  z-index: 1301;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cookie-consent-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 32px 24px 32px;
  border-radius: 22px;
  box-shadow: 0 5px 44px rgba(34,50,74,0.19);
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: modalFadeIn .44s cubic-bezier(.72,.03,.35,1.05);
}
@keyframes modalFadeIn {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 12px 0;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category-switch {
  width: 38px;
  height: 24px;
  position: relative;
}
.cookie-category-switch input[type="checkbox"] {
  opacity: 0;
  width: 38px;
  height: 24px;
  margin: 0;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #ececec;
  border-radius: 20px;
  transition: background .21s;
}
.cookie-category-switch input:checked + .cookie-switch-slider {
  background: #F5A623;
}
.cookie-switch-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(0,0,0,0.08);
  transition: transform .21s;
}
.cookie-category-switch input:checked + .cookie-switch-slider:before {
  transform: translateX(14px);
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #22324A;
  font-size: 1.4rem;
  position: absolute;
  top: 18px;
  right: 20px;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F5A623;
}

.cookie-modal-footer {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}

@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 18px 7vw;
    min-width: 0;
    width: 97vw;
  }
}

/* MICROINTERACTIONS */
.card, .feature-card, .service-item, .guide-card, .cta-btn, .cookie-btn, .cookie-consent-banner, .mobile-menu, .testimonial-card {
  transition: box-shadow .21s, transform .17s, background .21s, color .16s;
}

/* BRAND COLOR CLASSES */
.primary {
  color: #22324A;
}
.secondary {
  color: #F5A623;
}
.bg-primary {
  background: #22324A;
  color: #fff;
}
.bg-secondary {
  background: #F5A623;
  color: #22324A;
}
.bg-accent {
  background: #EFEFEF;
  color: #22324A;
}

/* SCANDINAVIAN CLEAN -- NATURAL MATERIAL/LOOK HINT */
section, .card, .feature-card, .guide-card, .service-item, .testimonial-card {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,50,74,0.06);
  border-radius: 14px;
}
.hero, .footer-contact, .benefit-icons, .text-image-section, .feature-grid, .service-list, .guide-list {
  /* Visual wide space and gap preserve for clean look */
}

/* NATURAL ACCENTS */
hr {
  border: 0;
  border-top: 1px solid #EFEFEF;
  margin: 32px 0 12px 0;
}

/********* ACCESSIBILITY & UTILITY ******/
:focus {
  outline: 2px solid #F5A623;
  outline-offset: 2px;
}
[tabindex="0"]:focus { outline: 2px solid #F5A623; }

/********* CUSTOM FONT IMPORTS (GOOGLE FONTS FALLBACKS) ******/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:400;500;700&display=swap');
