/* --------------------------------------------------
   Reset & Normalize
-------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { height: 100%; }
body { height: 100%; line-height: 1.5; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; display: block; }

/* --------------------------------------------------
   Brand Colors & Typography (Warm_Friendly)
-------------------------------------------------- */
:root {
  --brand-primary: #22314C;
  --brand-secondary: #CFD8DC;
  --brand-accent: #51A8B1;
  --brand-bg: #FCF6F2;
  --brand-warm1: #FCE6DE;
  --brand-warm2: #FFF3E3;
  --brand-warm3: #FFECD5;
  --brand-contrast-dark: #1a222b;
  --brand-text: #222b37;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: var(--brand-text);
  background: var(--brand-bg);
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem;  margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
p, ul, ol, address { font-size: 1rem; margin-bottom: 14px; }
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.3rem; }
}

/* --------------------------------------------------
   Layout Containers & Utility
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.text-section {
  background: var(--brand-warm2);
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px 0 rgba(34, 49, 76, 0.04);
}
@media (max-width: 550px) {
  .text-section {
    padding: 18px 8px;
  }
}

/* --------------------------------------------------
   Header & Main Navigation (Desktop)
-------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px 18px 32px;
  box-shadow: 0 2px 16px 0 rgba(173, 143, 127, 0.06);
  position: relative;
  z-index: 100;
}
.logo img {
  height: 40px;
  width: auto;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(81, 168, 177, 0.09);
  transition: transform 0.18s ease;
}
.logo img:hover {
  transform: scale(1.06) rotate(-2deg);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 22px;
  transition: background 0.14s, color 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-warm1);
  color: var(--brand-accent);
}

/* Hide nav, show burger on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  padding: 5px 18px 5px 14px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-primary);
  color: #fff;
}

@media (max-width: 985px) {
  header {
    padding: 13px 10px 13px 10px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .logo img { height: 34px; }
}

/* --------------------------------------------------
   Mobile Nav Overlay
-------------------------------------------------- */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 49, 76, 0.92);
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.48,.02,.45,1.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 30px;
  padding-right: 20px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  margin-bottom: 22px;
  cursor: pointer;
  align-self: flex-end;
  padding-right: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 0;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  background: rgba(255,255,255,0.08);
}
@media (min-width: 986px) {
  .mobile-menu { display: none!important; }
  .mobile-menu-toggle { display: none!important; }
}

/* --------------------------------------------------
   CTAs & Buttons
-------------------------------------------------- */
.cta, .btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.17s;
  box-shadow: 0 2px 10px 0 rgba(81, 168, 177, 0.09);
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 14px;
}
.cta.primary {
  background: var(--brand-primary);
  color: #fff;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus {
  background: #FFA876;
  color: #222;
  box-shadow: 0 4px 16px 0 rgba(81, 168, 177, 0.16);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* Filter tab buttons */
.topic-filters button {
  background: var(--brand-warm1);
  border: none;
  outline: none;
  border-radius: 18px;
  color: var(--brand-primary);
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  padding: 7px 20px;
  margin-right: 12px;
  transition: background 0.14s, color 0.14s;
  margin-bottom: 8px;
}
.topic-filters button:hover, .topic-filters button:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* --------------------------------------------------
   Hero Section
-------------------------------------------------- */
.hero {
  background: linear-gradient(95deg, var(--brand-warm3) 64%, var(--brand-warm1) 100%);
  border-radius: 0 0 40px 40px;
  padding: 44px 0 52px 0;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 28px 0 rgba(81, 168, 177, 0.06);
  min-height: 260px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.24rem;
  max-width: 630px;
  color: #473223;
}
@media (max-width: 850px) {
  .hero {
    padding: 32px 0 32px 0;
    border-radius: 0 0 28px 28px;
    min-height: 140px;
  }
  .hero h1 {
    font-size: 1.72rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------
   Features, Services, Cards, Team, Grid Lists
-------------------------------------------------- */
.feature-grid,
.usp-grid,
.service-grid,
.author-profiles,
.team-list,
.workshop-types-grid,
.target-audiences,
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-grid li, .usp-grid li, .service-grid li, .team-list > div, .workshop-types-grid > div, .article-list li, .article-preview-card {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(81,168,177,.05);
  border-radius: 22px;
  padding: 24px 18px;
  flex: 1 1 270px;
  min-width: 215px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.15s, transform 0.14s;
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-secondary);
}
.feature-grid li img, .usp-grid li img, .service-grid li img, .workshop-types-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  border-radius: 13px;
  background: var(--brand-warm1);
  padding: 7px;
  box-shadow: 0 2px 8px 0 rgba(255,160,120,0.08);
}
.feature-grid li:hover, .service-grid li:hover, .article-preview-card:hover {
  box-shadow: 0 6px 28px 0 rgba(81,168,177,0.19);
  transform: translateY(-3px) scale(1.015);
  border: 1.5px solid var(--brand-accent);
}
@media (max-width: 855px) {
  .feature-grid, .usp-grid, .service-grid, .team-list, .workshop-types-grid, .article-list {
    gap: 16px;
    flex-direction: column;
  }
  .feature-grid li, .usp-grid li, .service-grid li, .team-list > div, .workshop-types-grid > div, .article-preview-card {
    min-width: 0;
    width: 100%;
  }
}

.article-list {
  gap: 20px;
}
.article-preview-card {
  background: var(--brand-warm2);
  border-radius: 20px;
  padding: 20px 14px;
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-warm1);
  transition: box-shadow 0.13s;
}

/*****************
 * Pricing Table *
 *****************/
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(81,168,177,.06);
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 24px;
  border: 1.5px solid var(--brand-secondary);
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: 1rem;
}
.pricing-table th {
  font-size: 1.1rem;
  color: var(--brand-primary);
  background: var(--brand-warm1);
}
.pricing-table tr:nth-child(even) td {
  background: var(--brand-warm3);
}
@media (max-width: 650px) {
  .pricing-table th, .pricing-table td {
    padding: 8px 5px;
    font-size: 0.93rem;
  }
}

/*************************
 * Testimonial Card
 *************************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 22px;
  margin-top: 12px;
  box-shadow: 0 3px 16px 0 rgba(34,49,76,0.07);
  border: 1.5px solid var(--brand-warm1);
  font-size: 1.09rem;
  color: var(--brand-contrast-dark);
  transition: box-shadow 0.14s;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 1.06rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--brand-accent);
  font-size: 0.99rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px 0 rgba(81,168,177,0.16);
}

/*****************
 * Infographic Highlight Block
 *****************/
.infographic-highlights {
  background: var(--brand-warm1);
  color: var(--brand-primary);
  border-radius: 18px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px 0 rgba(81,168,177,0.09);
}

/********************
 * Fact-Check Widget
 ********************/
.fact-check-widget {
  background: #fff;
  border-radius: 24px;
  padding: 26px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,49,76,0.07);
  border: 1.5px solid var(--brand-secondary);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.statistic-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.statistic-blocks li {
  background: var(--brand-warm2);
  padding: 13px 14px;
  border-radius: 15px;
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.02rem;
}
.faq-list ul {
  padding-left: 12px;
}
.faq-list li {
  margin-bottom: 7px;
}

/****************************
 * Address, Info, Footer
 ****************************/
address {
  font-style: normal;
  margin-bottom: 10px;
}
footer {
  background: var(--brand-primary);
  color: #fff;
  padding: 34px 0 16px 0;
  width: 100%;
  margin-top: 50px;
}
footer .content-wrapper {
  align-items: center;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.86;
  transition: color 0.13s, opacity 0.13s;
  margin-right: 8px;
  margin-bottom: 6px;
  border-radius: 17px;
  padding: 7px 13px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
  background: rgba(255,255,255,0.09);
  opacity: 1;
}
.footer-nav a:last-child { margin-right: 0; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 10px;
}
.social-links a {
  opacity: 0.95;
  border-radius: 12px;
  background: transparent;
  padding: 3px;
  transition: background 0.14s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--brand-accent);
}
.social-links img {
  height: 28px;
  width: 28px;
}
.impressum-short {
  font-size: 0.95rem;
  color: #e5f8fe;
  opacity: 0.79;
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .footer-nav { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-nav a { font-size: 0.93rem; }
  .social-links img { height: 22px; width: 22px; }
  .impressum-short { font-size: 0.89rem; }
}

/******************************
 * Cards & Card Containers
 ******************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(81,168,177,.07);
  border: 1.5px solid var(--brand-warm1);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.13s, border 0.13s;
}
.card:hover {
  box-shadow: 0 5px 24px 0 rgba(81,168,177,0.16);
  border: 1.5px solid var(--brand-accent);
}
.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;
}
@media (max-width: 900px) {
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/************************************************************
 * Feature Lists, Items, Service- and Other Sectioned Blocks
 ************************************************************/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 14px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.service-list li {
  background: var(--brand-warm1);
  border-radius: 15px;
  padding: 22px 18px;
  flex: 1 1 220px;
  min-width: 170px;
  margin-bottom: 20px;
  border: 1.5px solid var(--brand-secondary);
  box-shadow: 0 1px 8px 0 rgba(222,167,120,0.07);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li .price {
  font-family: 'Montserrat';
  font-weight: 700;
  color: var(--brand-primary);
  font-size: 1rem;
  margin-top: 6px;
}
@media(max-width: 800px) {
  .service-list { flex-direction: column; gap: 15px; }
  .service-list li { width: 100%; }
}

/* Various vertical and list helpers */
.workshop-types-grid, .team-list {
  gap: 18px;
}
.team-list > div {
  min-width: 180px;
  padding: 19px 12px;
  background: var(--brand-warm3);
  border-radius: 15px;
  border: 1.5px solid var(--brand-secondary);
  font-size: 1.06rem;
}
.target-audiences li {
  background: #fff;
  border-radius: 13px;
  padding: 12px 18px;
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 8px;
  border: 1.5px solid var(--brand-warm1);
  min-width: 150px;
}
.author-profiles li {
  background: var(--brand-warm2);
  border-radius: 13px;
  margin-right: 11px;
  padding: 9px 16px;
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 10px;
  border: 1.2px solid var(--brand-warm1);
}

/***********************************
 * Misc Section-Specific Styles
 ***********************************/
.past-events-overview ul li {
  margin-bottom: 7px;
  color: var(--brand-primary);
  font-size: 1rem;
}
.use-case-examples {
  margin-top: 14px;
  background: var(--brand-warm2);
  border-radius: 10px;
  padding: 14px 11px;
  color: var(--brand-primary);
  font-size: 1.01rem;
}
.event-rating span {
  color: #252525;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fffbe4;
  padding: 7px 14px;
  border-radius: 15px;
}

/* --------------------------------------------------
   Cookie Consent Banner & Modal
-------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff8ef;
  color: var(--brand-primary);
  box-shadow: 0 -3px 24px 0 rgba(222,167,120,0.15);
  z-index: 2100;
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  border-top: 2px solid var(--brand-warm2);
  animation: slideCookieIn 0.7s cubic-bezier(.14,0,.38,1.13);
}
@keyframes slideCookieIn {
  from { transform: translateY(150%); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}
.cookie-consent-banner .btn {
  margin: 0 7px;
  font-family: 'Montserrat';
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
}
.cookie-consent-banner .btn-accept {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-consent-banner .btn-accept:hover, .cookie-consent-banner .btn-accept:focus {
  background: var(--brand-primary); color: #fff;
}
.cookie-consent-banner .btn-reject {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-warm1);
}
.cookie-consent-banner .btn-reject:hover, .cookie-consent-banner .btn-reject:focus {
  background: var(--brand-warm1); color: var(--brand-primary);
}
.cookie-consent-banner .btn-settings {
  background: #fff;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}
.cookie-consent-banner .btn-settings:hover,.cookie-consent-banner .btn-settings:focus{
  background: var(--brand-accent); color: #fff;
}
@media (max-width: 670px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.95rem;
    gap: 12px;
  }
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed; z-index: 2200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,36,49,0.84);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 4vw;
  animation: cookieModalIn 0.34s cubic-bezier(.21,.6,.46,1.17);
}
@keyframes cookieModalIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal-content {
  background: #fff8ef;
  color: var(--brand-primary);
  border-radius: 22px;
  max-width: 420px;
  width: 98%;
  padding: 36px 26px 26px 26px;
  box-shadow: 0 4px 26px 0 rgba(81,168,177,0.15);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--brand-accent);
  position: absolute;
  top: 15px; right: 17px;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 10px;
  padding: 3px 14px;
  transition: background 0.13s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat';
  color: var(--brand-primary);
  cursor: pointer;
  flex: 1;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 22px; height: 22px;
  border-radius: 6px;
  margin: 0 8px 0 0;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #c3c3c3;
  opacity: .5;
}
.cookie-category .cookie-desc {
  color: #635110;
  font-size: 0.95rem;
  margin-left: 0;
}
.cookie-modal-actions {
  display: flex; gap: 14px;
  margin-top: 18px;
}
.cookie-modal-actions .btn {
  font-family: 'Montserrat';
  padding: 8px 18px;
  border-radius: 18px;
  border: none;
}

/******************************
 * Forms (Contact Email Forms)
 ******************************/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1.5px solid var(--brand-secondary);
  background: #fff;
  margin-bottom: 18px;
  transition: border 0.14s, box-shadow 0.13s;
  display: block;
  width: 100%;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--brand-accent);
  box-shadow: 0 3px 16px 0 rgba(81, 168, 177, .13);
  outline: none;
}
label {
  font-weight: 500;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  display: block;
  font-size: 1rem;
}

/*******************************
 * Universal Spacings & Effects
 *******************************/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media(max-width: 800px){
  section { padding: 24px 6px; margin-bottom: 38px; }
}

ul, ol { margin-bottom: 16px; }
ul:not([class]), ol:not([class]) { padding-left: 19px; list-style: disc; }
ul ul, ol ol { margin-bottom: 0; }

hr { border: none; border-bottom: 2px solid var(--brand-warm1); margin: 26px 0 18px 0; }

/*******************************
 * Micro-Interactions & Animations
 *******************************/
a, .cta, .btn, .main-nav a, .footer-nav a, .article-preview-card, .feature-grid li, .service-grid li, .card {
  transition: background 0.16s, color 0.13s, box-shadow 0.2s, border 0.13s, transform 0.15s;
}
a {
  color: var(--brand-accent);
  text-decoration: underline;
  word-break: break-word;
}
a:focus { outline: 2px solid var(--brand-accent); }
a:hover, a:focus {
  color: #EA6B25;
  text-decoration: underline;
}

/*******************************
 * Accessibility & Utility
 *******************************/
[tabindex]:focus, button:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 9px;
  background: var(--brand-warm1);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-accent);
  border-radius: 12px;
}

/*******************************
 * Accent Elements (Price tags, labels)
 *******************************/
.price {
  background: var(--brand-warm2);
  color: var(--brand-primary);
  border-radius: 13px;
  padding: 7px 16px;
  font-weight: 600;
  font-family: 'Montserrat';
  margin-top: 7px;
  font-size: 1rem;
}

/*******************************
 * Responsive Headings/Lists (Smaller screens)
 *******************************/
@media(max-width:550px){
  h1 {font-size:1.4rem;}
  h2 {font-size:1.12rem;}
  h3 {font-size:1.02rem;}
  .hero, .section, section {padding:13px 2px;}
}

/* Ensure no content overlaps and provide space below fixed banners */
body { padding-bottom: 85px; }
@media (max-width: 600px){body{padding-bottom:135px;}}

/************************************************/
/*           END OF CSS                         */
/************************************************/
