/* =====================================================
   RESET & BASE
   ===================================================== */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  background: #F7F9FB;
  color: #102A43;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
a {
  color: #1B4D72;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F16B6F;
  outline: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #102A43;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }
p, li {
  font-size: 1rem;
}
strong, b { font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
}

/* =====================================================
   CONTAINERS & LAYOUTS
   ===================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(16,42,67, 0.08);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(16,42,67, 0.14);
  transform: translateY(-4px);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  background: #F7FAFC;
  border-radius: 12px;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(16,42,67, 0.05);
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 560px;
  border: 1px solid #E2E8F0;
}
.testimonial-quote {
  color: #102A43;
  font-size: 1.05rem;
  font-weight: 500;
}
.testimonial-author {
  color: #65728b;
  font-size: 0.96rem;
  font-style: italic;
}
.testimonial-section .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(16,42,67, 0.07);
  padding: 28px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 340px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover {
  box-shadow: 0 6px 18px rgba(16,42,67, 0.15);
  transform: translateY(-3px);
}

/* Cookie Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2px solid #102A43;
  box-shadow: 0 -2px 12px rgba(16,42,67,0.09);
  z-index: 1100;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: slideUp 0.38s cubic-bezier(.6,.35,0,1.2);
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.23s, color 0.16s;
}
.cookie-accept {
  background: #102A43;
  color: #fff;
  border: none;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #1B4D72;
}
.cookie-reject {
  background: #fff3d6;
  color: #102A43;
  border: 1px solid #102A43;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F5DD90;
  color: #102A43;
}
.cookie-settings {
  background: transparent;
  color: #102A43;
  border: 1px solid #BFD2E3;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #E2E8F0;
  color: #102A43;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(16,42,67, 0.42);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .34s cubic-bezier(.51,.79,.31,1.19);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 38px 28px 32px;
  box-shadow: 0 6px 36px rgba(16,42,67, 0.15);
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: slideIn .36s cubic-bezier(.51,.79,.31,1.19);
}
@keyframes slideIn {
  from { transform: translateY(64px) scale(0.94); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-content h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
}
.cookie-modal-content label {
  cursor: pointer;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: #102A43;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(16,42,67,0.08);
  position: relative;
  z-index: 501;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 14px 20px;
  gap: 16px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 500;
  color: #102A43;
  opacity: 0.95;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F16B6F;
  outline: none;
}
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #102A43;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 28px;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 1px 6px rgba(16,42,67, 0.08);
  margin-left: 18px;
  margin-right: 10px;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F16B6F;
  color: #fff;
  box-shadow: 0 4px 20px rgba(241,107,111, 0.13);
}
/* Hide mobile-menu-toggle and mobile menu by default on desktop */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 6px;
  font-size: 1.65rem;
  color: #102A43;
  padding: 7px 15px;
  border: 1px solid #E2E8F0;
  margin-left: 12px;
  z-index: 1000;
  transition: background 0.17s, box-shadow 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F5DD90;
  outline: none;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.66,.02,.38,1.12);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(16,42,67,0.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #102A43;
  font-size: 2rem;
  border: none;
  margin: 16px 20px 12px 0;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F16B6F;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 32px;
  margin-top: 28px;
}
.mobile-nav a {
  color: #102A43;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #E2E8F0;
  transition: color 0.17s, background 0.14s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F16B6F;
  background: #F7F9FB;
  outline: none;
}

/* On mobile show mobile-menu-toggle, hide .main-nav and .cta-btn */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
}

/* =====================================================
   HERO, CTA, SECTIONS
   ===================================================== */
.hero {
  background: #E3ECF7;
  padding: 64px 0 40px 0;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(16,42,67,0.04);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #102A43;
}
.hero p {
  color: #232F47;
  font-size: 1.14rem;
}
.cta-area {
  background: #F5DD90;
  border-radius: 12px;
  padding: 34px 20px 34px 20px;
  box-shadow: 0 2px 8px rgba(241,107,111, 0.06);
  text-align: center;
  margin-bottom: 32px;
}
.cta-area h2 {
  color: #102A43;
  margin-bottom: 12px;
}
.cta-area p {
  color: #232F47;
  margin-bottom: 14px;
  font-size: 1.08rem;
}
.cta-area .cta-btn {
  margin-top: 6px;
  margin-left: 0;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #102A43;
  color: #fff;
  padding: 34px 0 0 0;
  box-shadow: 0 -2px 16px rgba(16,42,67,0.10);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 3px;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F5DD90;
  text-decoration: underline;
  outline: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1rem;
}
.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-address img {
  width: 22px; height: 22px;
  filter: brightness(0) invert(1);
}
.footer-copy {
  font-size: 0.95rem;
  color: #D9E2EC;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-address {
    font-size: 0.98rem;
  }
}

/* =====================================================
   MISCELLANEOUS ELEMENTS/UTILITIES
   ===================================================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.text-section img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  vertical-align: middle;
}
.values-list ul, .about-team ul {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand-story {
  margin-top: 10px;
}
.services ul, .features ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  margin-left: 18px;
}

/* List bullet styling for ultimate professionalism */
ul li {
  position: relative;
  padding-left: 16px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 100%;
  background: #102A43;
  position: absolute;
  left: 0; top: 9px;
}

/* =====================================================
   RESPONSIVE DESIGN – MOBILE-FIRST
   ===================================================== */
@media (max-width: 1024px) {
  .feature-grid, .testimonial-section .testimonial-cards, .card-container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .footer-content {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .hero {
    padding: 42px 0 28px 0;
    margin-bottom: 26px;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .feature-grid, .testimonial-section .testimonial-cards, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
  .testimonial-section {
    padding-bottom: 12px;
  }
  .cta-area {
    padding: 20px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .hero h1, h1 { font-size: 1.3rem; }
  .hero h2, h2 { font-size: 1.08rem; }
  .testimonial-card {
    padding: 14px;
    font-size: 0.97rem;
  }
}

/* =====================================================
   HELPER CLASSES
   ===================================================== */
.mt-4 { margin-top: 24px; }
.mb-4 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.hide { display: none !important; }

/* =====================================================
   ACCESSIBILITY
   ===================================================== */
:focus {
  outline: 2px solid #F5DD90;
  outline-offset: 2px;
}

/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #E2E8F0;
}
::-webkit-scrollbar-thumb {
  background: #BFD2E3;
  border-radius: 6px;
}

/* =====================================================
   MICR0-INTERACTIONS
   ===================================================== */
.card, .feature-item, .cta-btn, .main-nav a, .mobile-menu-toggle, .cookie-banner button, .mobile-menu-close {
  transition: box-shadow 0.18s, background 0.18s, color 0.16s, transform 0.18s;
}

/* ----- END: CSS for Petal Journey Akademie ----- */