/*========================================
  ION Venture "creative_artistic" CSS
========================================*/
/* 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #243346;
  background: #f7f8fa;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #3EA2D7;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #243346;
  text-decoration: underline;
}
section, header, footer, main, nav, aside, figure {
  display: block;
}
ul, ol {
  margin-left: 22px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}

/* BRAND & COLOR VARIABLES (fallbacks) */
:root {
  --primary: #243346;
  --secondary: #3ea2d7;
  --accent: #f4f4f4;
  --creative-pink: #FA3B67;
  --creative-yellow: #FFD600;
  --creative-green: #0EEDA2;
  --creative-purple: #8064A2;
  --display-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
  --shadow-normal: 0 4px 32px 0 rgba(24,32,44,0.13);
  --shadow-card: 0 3px 14px 0 rgba(80,95,124,0.13);
}

/* Typography */
h1, .hero h1 {
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 1px 5px 0 #FFD600, 2px 6px 24px rgba(250,59,103,0.05);
}
@media (max-width:600px) {
  h1, .hero h1 { font-size: 1.65rem; }
}
h2 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
h3 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1.23rem;
  color: var(--primary);
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: var(--display-font);
  font-weight: 500;
  color: var(--creative-purple);
}
p, .subheadline {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--creative-pink);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Container & Layout Wrappers */
.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px 40px 24px 44px/36px 38px 42px 22px;
  box-shadow: var(--shadow-normal);
  position: relative;
}
@media (max-width:768px) {
  .section { padding: 24px 5px; margin-bottom: 36px; border-radius: 18px; }
}
section {
  margin-bottom: 40px;
}

/* HEADER */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(36,51,70,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
header a img {
  height: 38px;
  margin-right: 28px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  border-radius: 8px;
  padding: 5px 13px;
  transition: background 0.23s, color 0.23s;
}
header nav a:hover, header nav a:focus {
  background: var(--creative-yellow);
  color: var(--creative-pink);
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary) 70%, var(--creative-pink) 130%);
  color: #fff;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.13rem;
  letter-spacing: 0.025em;
  padding: 13px 34px;
  border: none;
  border-radius: 16px 32px 10px 26px/20px 18px 30px 16px;
  box-shadow: 0 5px 22px 0 rgba(250,59,103,0.17);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.18s;
  margin-left: 20px;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--creative-pink) 50%, var(--secondary) 120%);
  color: #fff;
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
  box-shadow: 0 12px 40px -11px #0EEDA2;
}

@media (max-width:1000px) {
  header .container { flex-direction: column; align-items: flex-start; }
  header nav {
    margin-bottom: 8px;
  }
  .btn-primary { margin-left: 0; }
}

@media (max-width:768px) {
  header .container {
    flex-direction: row;
    padding: 10px 12px;
    gap: 0;
  }
  header nav, .btn-primary {
    display: none;
  }
}

/* HERO Section */
.hero {
  background: linear-gradient(78deg,#3EA2D7 57%, #FFD600 100%) no-repeat;
  min-height: 340px;
  box-shadow: 0 12px 42px -20px var(--primary);
  border-radius: 0 0 60px 60px / 40px 40px 60px 60px;
  position: relative;
  /* Optionally add a painterly edge mask on :before (omitted for CSS only) */
}
.hero .container {
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 320px;
}
.hero .content-wrapper {
  align-items: flex-start;
  margin-top: 38px;
  gap: 22px;
}
.hero h1, .hero .subheadline {
  color: var(--primary);
}
.hero .btn-primary {
  margin-top: 18px;
}
@media (max-width:768px) {
  .hero { min-height: 180px; padding-bottom: 16px; border-radius: 0 0 40px 40px; }
  .hero .content-wrapper { margin-top: 18px; }
}

/* Features Section & Cards */
.features {
  background: #fff6f7;
  border-radius: 44px;
  margin-bottom: 42px;
  box-shadow: 0 4px 32px 0 rgba(250,59,103,0.11);
}
.features .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature {
  background: #F5FAFE;
  border-radius: 25px 12px 36px 18px / 12px 20px 26px 10px;
  box-shadow: var(--shadow-card);
  padding: 28px 22px 22px 22px;
  flex: 1 1 210px;
  min-width: 215px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.18s;
  margin-bottom: 20px;
  border-left: 8px solid var(--secondary);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  display: block;
  position: absolute;
  right: -30px; bottom: -32px;
  width: 60px; height: 60px;
  background: var(--creative-pink);
  opacity: 0.1;
  border-radius: 100%;
  z-index: 0;
}
.feature:hover, .feature:focus {
  box-shadow: 0 9px 26px -6px #0EEDA2;
  transform: translateY(-4px) scale(1.01) rotate(-1.5deg);
  border-left-color: var(--creative-green);
}
.feature img {
  width: 38px; height: 38px; margin-bottom: 6px;
}
.feature h3 {
  z-index: 1;
  color: var(--creative-purple);
}
.feature p {
  font-size: 1.01rem;
  z-index: 1;
}

@media (max-width:950px) {
  .feature-grid { gap: 18px; }
}
@media (max-width:700px) {
  .feature-grid { flex-direction: column; gap: 13px; }
  .feature { width: 100%; max-width: 100%; }
}

/* Card Container Shared Styles */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border-radius: 22px 10px 40px 20px/30px 22px 16px 18px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  flex: 1 1 280px;
  max-width: 380px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 30px 0 var(--creative-yellow);
  transform: scale(1.025);
}

/* Content Grids (WITH FLEXBOX!) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width:900px) {
  .content-grid { flex-direction: column; gap: 14px; }
}

/* Text-Image Section */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
@media (max-width:768px) {
  .text-image-section { flex-direction: column; gap: 16px; }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Testimonials */
.testimonials {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 2px 30px 0 rgba(36,51,70,0.07);
  padding-top: 36px; padding-bottom: 36px;
}
.testimonials .container {
  padding: 0 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F6FE;
  border-radius: 24px 48px 22px 12px/13px 28px 30px 18px;
  box-shadow: 0 4px 18px 0 rgba(80,95,124,0.10);
  color: #23262c;
  margin-bottom: 20px;
  margin-top: 12px;
  max-width: 850px;
  font-size: 1.1rem;
  transition: box-shadow 0.18s, background 0.12s;
}
.testimonial-card p {
  color: #23262c;
  font-family: var(--body-font);
  font-style: italic;
  letter-spacing: 0.01em;
  flex: 1 1 0;
}
.testimonial-card span {
  font-weight: 700;
  color: var(--creative-pink);
}
.testimonial-card:hover, .testimonial-card:focus {
  background: #f4f4f4;
  box-shadow: 0 8px 32px -9px var(--creative-green);
}
@media (max-width:700px) {
  .testimonials { padding: 8px 0; }
  .testimonial-card { flex-direction: column; gap: 10px; padding: 15px; }
}

/* Services Section */
.services {
  background: #EDFAF7;
  border-radius: 36px;
  box-shadow: 0 3px 21px 0 rgba(14,237,162,0.09);
  padding-top: 36px; padding-bottom: 36px;
}
.services .container {
  padding: 0 22px; }
.service-card {
  background: #fff;
  border-left: 6px solid var(--creative-green);
  border-radius: 22px 11px 35px 14px / 16px 22px 26px 14px;
  box-shadow: var(--shadow-card);
  padding: 22px 28px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 220px;
  max-width: 440px;
  transition: box-shadow 0.2s, border-color 0.14s;
}
.service-card:hover, .service-card:focus {
  border-left-color: var(--secondary);
  box-shadow: 0 9px 26px -8px var(--secondary);
}
.service-card h3 {
  color: var(--creative-purple);
}
.service-price {
  margin-top: 7px;
  color: var(--creative-pink);
  font-weight: bold;
  font-size: 1.09rem;
}
.services ul {
  margin-top: 20px;
}

/* CTA Sections */
.cta {
  background: linear-gradient(90deg, #faf7f9 60%, #E5F6FF 100%) no-repeat;
  border-radius: 30px;
  box-shadow: 0 4px 18px 0 rgba(62,162,215,0.09);
  padding: 36px 18px;
  text-align: center;
}
.cta h2 {
  color: var(--creative-green);
  font-size: 1.5rem;
}
.cta .btn-primary {
  margin: 14px auto 0 auto;
  display: inline-block;
}

/* Legal and Info Text Sections */
.legal {
  background: #fff;
  border-radius: 44px;
  box-shadow: 0 2px 24px 0 rgba(36,51,70,0.08);
  margin-bottom: 38px;
  padding: 36px 18px;
}
.legal .text-section {
  gap: 16px;
}

/* Contact Section */
.contact .text-section > div {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body-font);
  font-size: 1.08rem;
}
.contact .cta {
  margin-top: 22px;
}

/* Confirmation */
.confirmation .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
  gap: 20px;
}

/* Footer */
footer {
  margin-top: 38px;
  background: #243346;
  color: #fff;
  box-shadow: 0 -6px 32px 0 rgba(36,51,70,0.09);
  border-radius: 38px 38px 0 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 16px 12px 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
footer nav a {
  color: #3EA2D7;
  font-family: var(--body-font);
  font-size: 1.01rem;
  margin-bottom: 0;
}
footer nav a:hover, footer nav a:focus {
  color: #FFD600;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-contact span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.97rem;
  color: #fff;
}
footer img {
  height: 34px;
  margin-bottom: 18px;
  margin-top: 0;
}
.copyright {
  margin-top: 6px;
  font-size: 0.98rem;
  color: #B5BEDC;
  letter-spacing: 0.02em;
}
@media (max-width:700px) {
  footer nav { gap: 10px; }
  .footer-contact { flex-direction: column; gap: 6px; }
  footer .container { padding-top: 18px; }
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 20px;
  top: 18px;
  z-index: 2002;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 16px 32px 8px 19px/18px 16px 22px 8px;
  width: 52px; height: 52px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px 0 rgba(62,162,215,0.20);
  cursor: pointer;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--creative-pink);
}
@media (max-width:768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,51,70,0.96);
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.87,0.12,0.47,1.11);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 25px;
  background: var(--creative-pink);
  color: #fff;
  border: none;
  border-radius: 12px 14px 16px 8px/18px 15px 9px 13px;
  width: 48px; height: 48px;
  font-size: 2rem;
  display: flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2003;
  box-shadow: 0 4px 12px 0 rgba(250,59,103,0.15);
  transition: background 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--creative-yellow); color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 88px;
  gap: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.5rem;
  padding: 12px 34px;
  border-radius: 16px 32px 12px 24px/17px 23px 15px 15px;
  transition: background 0.22s, color 0.23s;
  text-align: center;
  box-shadow: 0 2px 9px 0 rgba(250,59,103,0.09);
  width: 92vw;
  max-width: 390px;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--creative-pink);
  color: #FFD600;
}
@media (max-width: 420px) {
  .mobile-nav a { font-size: 1.12rem; padding: 11px 8px; }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #243346;
  border-top: 6px solid var(--secondary);
  box-shadow: 0 -5px 32px 0 rgba(36,51,70,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 12px;
  z-index: 2200;
  opacity: 0;
  visibility: hidden;
  transition: bottom 0.22s, opacity 0.22s;
}
.cookie-banner.active {
  opacity: 1;
  visibility: visible;
  bottom: 0;
}
.cookie-banner p {
  margin-right: 18px;
  font-family: var(--body-font);
  font-size: 1rem;
}
.cookie-btn, .cookie-settings-btn {
  background: var(--secondary);
  color: #fff;
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 20px 12px 22px 16px/14px 16px 18px 13px;
  padding: 10px 22px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.18s, color 0.21s;
}
.cookie-btn.reject {
  background: var(--creative-pink); color: #fff;
}
.cookie-settings-btn {
  background: var(--creative-yellow);
  color: var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover,
.cookie-settings-btn:focus, .cookie-settings-btn:hover {
  background: var(--creative-green); color: var(--primary);
}
@media (max-width:650px) {
  .cookie-banner { flex-direction: column; gap: 16px; padding: 14px 5px; }
  .cookie-banner p { margin-right: 0; text-align: center; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2300;
  background: rgba(36,51,70,0.84);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  opacity: 1; pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #243346;
  border-radius: 32px 42px 19px 30px / 23px 24px 28px 15px;
  box-shadow: 0 7px 42px 0 rgba(62,162,215,0.19);
  padding: 34px 18px 24px 28px;
  min-width: 320px; max-width: 98vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
  animation: modalIn 0.42s cubic-bezier(.61,.01,.43,1.22);
}
@keyframes modalIn {
  from { transform: scale(0.85) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--secondary);
  font-family: var(--display-font);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 15px; right: 15px;
  border: none;
  background: var(--creative-pink);
  color: #fff;
  border-radius: 10px 12px 9px 13px;
  font-size: 1.25rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .close-btn:focus, .cookie-modal .close-btn:hover {
  background: var(--creative-yellow); color: var(--primary);
}
.cookie-modal .cookie-category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem; font-family: var(--body-font);
}
.cookie-toggle {
  appearance: none;
  position: relative;
  width: 44px; height: 24px;
  background: #f2f2f2;
  border-radius: 12px;
  outline: 0;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-toggle:checked {
  background: var(--creative-green);
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.14s;
}
.cookie-toggle:checked:before {
  left: 23px;
}
.cookie-toggle[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  width: 100%;
  padding: 10px 0;
  font-size: 1.05rem;
}

/* Animations for overlays/slides */
@keyframes slideInNav {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Utilities & Misc */
.hidden, [hidden] { display: none !important; }
.text-center { text-align: center; }

/* Artistic Details - Hand-Drawn Like Borders */
.features, .testimonials, .services, .legal, .cta, .about, .contact, .confirmation .content-wrapper {
  border-style: solid;
  border-width: 1.5px;
  border-color: rgba(250,59,103,0.12);
  box-shadow: 0 2px 28px 0 rgba(185,121,255,0.04);
}

/* Customize Scrollbar for Brand Vibe */
body::-webkit-scrollbar {
  width: 11px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #3ea2d7 60%, #FFD600 100%);
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: #f7f8fa;
}

/* Media Queries for Responsiveness */
@media (max-width:1012px) {
 .container { max-width: 90vw; padding-left: 7px; padding-right: 7px; }
}
@media (max-width:650px) {
  h1, .hero h1 { font-size: 1.35rem; }
  h2 { font-size: 1.22rem; }
  footer .container { padding: 12px 2px 8px 2px; }
  .footer-contact { font-size: 0.94rem; }
  .hero .container { min-height: 130px; }
}

/* Remove unwanted focus outlines except for accessibility */
:focus:not(:focus-visible){ outline: none; }
:focus-visible {
 outline: 3px solid var(--creative-yellow); outline-offset: 2px;
}

/* Artistic-creative fonts fallback for browsers */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* Responsive adjustments for .feature-item & .feature-grid */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* For cards-like content splits (eg, Projekteinblick) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* Prevent any absolute pos for content elements */
.card, .feature, .service-card, .testimonial-card {
  position: relative;
}

/* Artistic accent details for SVG logos/images */
header a img, footer a img {
  transition: transform 0.19s;
}
header a img:hover, footer a img:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* End of CSS */
