/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F8FFF9;
  color: #204331;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #256145;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  color: #59A063;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
  font-size: inherit;
}
button {
  cursor: pointer;
}
/* FONT IMPORT*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

:root {
  --brand-primary: #256145;
  --brand-secondary: #89B987;
  --brand-accent: #E6F2E7;
  --brand-yellow: #F9DF50;
  --brand-orange: #FFBC80;
  --brand-blue: #75B7E3;
  --text-dark: #204331;
  --text-light: #fff;
  --shadow: 0 4px 16px 0 rgba(37, 97, 69, 0.08);
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --transition: 0.25s cubic-bezier(0.4,0.08,0.42,1.01);
}

/***************
 BASIC LAYOUT
*****************/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

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

/***********
 HEADERS & NAV
*************/
header {
  width: 100%;
  background: var(--brand-primary);
  color: var(--text-light);
  box-shadow: 0 4px 16px 0 rgba(37, 97, 69, 0.13);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
header a {
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
header a:focus {
  outline: 2px dashed var(--brand-yellow);
  outline-offset: 2px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-yellow);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px 0 rgba(255,199,72,0.09);
  transition: background 0.23s, transform 0.15s;
  margin-left: 26px;
  letter-spacing: 0.03em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--brand-orange);
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

header img {
  height: 44px;
  filter: invert(1) brightness(5);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--brand-yellow);
  color: var(--brand-primary);
  border-radius: var(--radius-md);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
  margin-left: 12px;
  z-index: 301;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--brand-orange);
}

/***************
 MOBILE MENU
*****************/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-accent);
  box-shadow: 0 8px 60px 10px rgba(37,97,69,0.13);
  z-index: 4000;
  transform: translateX(-100%);
  transition: transform 0.35s var(--transition);
  padding: 32px 16px 18px 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--brand-primary);
  background: var(--brand-yellow);
  border-radius: var(--radius-md);
  width: 48px;
  height: 48px;
  align-self: flex-end;
  margin-bottom: 18px;
  border: none;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-orange);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  margin-bottom: 6px;
  width: 100%;
  transition: background 0.22s, color 0.22s;
  box-shadow: var(--shadow);
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--brand-yellow);
  color: var(--brand-primary);
}

/****************
 HERO & SPLASH STYLES
*****************/
.hero, .wohnideen-hero, .tipps-hero, .projekte-hero, .blog-hero, .contact-hero, .thank-you {
  background: linear-gradient(90deg, var(--brand-accent) 70%, var(--brand-blue) 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: 0 8px 24px 0 rgba(37,97,69,0.10);
  min-height: 210px;
  display: flex;
  align-items: center;
  padding: 32px 0 48px 0;
}
.hero h1, .wohnideen-hero h1, .projekte-hero h1, .blog-hero h1, .thank-you h1, .contact-hero h1, .tipps-hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--brand-primary);
  margin-bottom: 18px;
  letter-spacing: 0.03em;
  text-shadow: 1px 2px 0 #d2f5e3;
  animation: popfadein 0.8s 0.1s cubic-bezier(.6,.3,.3,1) backwards;
}
.hero p, .wohnideen-hero p, .projekte-hero p, .blog-hero p, .thank-you p, .contact-hero p, .tipps-hero p {
  color: #0e2116;
  font-size: 1.17rem;
  margin-bottom: 18px;
  max-width: 530px;
}

@keyframes popfadein {
  0% { opacity: 0; transform: scale(0.85) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/*******************
 SECTION & CARD BASES
********************/
.features, .feature-grid, .team-list, .benefits-grid, .faq-accordion, .blog-list ul, .project-highlights ul, .project-results ul, .guides-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div, .benefits-grid > div, .team-list > div, .faq-accordion > div, .blog-list ul > li, .project-highlights ul > li, .project-results ul > li, .guides-list ul > li {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  margin-bottom: 24px;
  min-width: 210px;
  flex: 1 1 210px;
  transition: transform 0.16s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.feature-grid > div:hover,
.benefits-grid > div:hover,
.team-list > div:hover, 
.faq-accordion > div:hover, 
.blog-list ul > li:hover {
  transform: translateY(-4px) scale(1.015) rotate(-2deg);
  box-shadow: 0 8px 40px 0 rgba(137,185,135,0.17);
}

.feature-grid img, .benefits-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  background: var(--brand-accent);
  border-radius: 50%;
  padding: 8px;
}
.feature-grid h3, .benefits-grid p, .team-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  color: var(--brand-primary);
  margin: 10px 0 6px 0;
  letter-spacing: 0.01em;
}

/*****************
 CONTENT PATTERNS
******************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 26px 23px;
  min-width: 218px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(137,185,135,0.14);
  transform: scale(1.034) rotate(-1deg);
}
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************
 TESTIMONIALS
****************/
.testimonial-preview, .testimonial {
  background: var(--brand-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px 0 rgba(37,97,69,0.06);
  padding: 34px 0 18px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  animation: popfadein 0.7s cubic-bezier(.59,.13,.78,.55) backwards;
  transition: box-shadow 0.16s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 34px 0 rgba(37,97,69,0.12);
  transform: translateY(-2px) scale(1.014) rotate(1deg);
}
.testimonial-card p {
  color: #204331;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-info {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.01rem;
  font-weight: bold;
  display: flex;
  gap: 8px;
  align-items: center;
}
.short-quotes p {
  background: var(--brand-secondary);
  color: #fff;
  font-style: italic;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow);
}

/*******************
 BUTTONS + INTERACTIONS
********************/
button, .cta-btn, .feature-grid > div, .benefits-grid > div, .card, .testimonial-card, .eco-tips, .faq-accordion > div {
  transition: box-shadow 0.18s, background 0.17s, color 0.18s, transform 0.18s;
}

/********************
 ECO TIPS BUBBLE
********************/
.eco-tips {
  background: var(--brand-yellow);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 26px;
  border-radius: 32px;
  font-weight: 700;
  margin: 12px auto 16px auto;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  animation: tipswiggle 1.4s infinite alternate ease-in-out;
}
@keyframes tipswiggle {
  0% {transform: translateY(0) rotate(-1deg);}
  100% {transform: translateY(-4px) rotate(2deg);}
}

/*******************
 BLOG PREVIEW, LEGAL SECTIONS
*******************/
.blog-preview, .legal {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 38px 0;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.blog-list ul {
  gap: 24px;
}
.blog-list ul li {
  border-left: 6px solid var(--brand-secondary);
  padding-left: 14px;
}

/*******************
 ABOUT PREVIEW, TEAM
*******************/
.about-preview {
  background: var(--brand-accent);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-list > div {
  flex: 1 1 230px;
}

/*********************
 BLOG, FAQ, GUIDELINES, PROJECTS
**********************/
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.faq-accordion > div {
  cursor: pointer;
}
.faq-accordion > div h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.06rem;
  margin-bottom: 9px;
  position: relative;
}
.faq-accordion > div p {
  font-size: 0.99rem;
  color: #38734f;
}
.guides-list ul, .project-highlights ul, .project-results ul {
  gap: 24px;
}
.guides-list ul > li, .project-highlights ul > li, .project-results ul > li {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-radius: var(--radius-md);
  min-width: 220px;
}

/*******************
 TYPOGRAPHY & HEADINGS
*******************/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 7px;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.23rem;
}
h4 {
  font-size: 1.07rem;
}
p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #204331;
  font-size: 1.04rem;
}
strong {
  font-weight: 700;
  color: #1b382c;
}

/*********************************
 LAYOUTS: FOOTER + SOCIAL + CONTACT
**********************************/
footer {
  background: var(--brand-primary);
  color: #fff;
  margin-top: 38px;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.93;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: opacity 0.19s, background 0.14s;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}
.footer-nav a:hover {
  background: var(--brand-yellow);
  color: var(--brand-primary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #fff;
}
.footer-contact img {
  width: 22px;
  height: 22px;
  background: var(--brand-accent);
  border-radius: 50%;
  padding: 2px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 rgba(37,97,69,0.10);
  transition: background 0.18s, transform 0.11s;
}
.footer-social a:hover img {
  background: var(--brand-yellow);
  transform: rotate(10deg) scale(1.05);
}
.footer-copyright {
  font-size: 0.93rem;
  opacity: 0.75;
  margin-top: 10px;
  text-align: left;
}

/*****************************************
 COOKIE CONSENT BANNER & MODAL
******************************************/
.cookie-banner {
  position: fixed;
  z-index: 9500;
  left: 0; 
  right: 0; 
  bottom: 0;
  width: 100%;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 -4px 28px 0 rgba(37,97,69,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 24px 18px 24px;
  animation: popfadein 0.5s both;
}
.cookie-banner p {
  color: var(--brand-primary);
  margin-bottom: 9px;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0;
  border: none;
  transition: background 0.18s, color 0.15s, transform 0.12s;
  box-shadow: var(--shadow);
}
.cookie-actions .accept-btn {
  background: var(--brand-yellow);
  color: var(--brand-primary);
}
.cookie-actions .accept-btn:hover {
  background: var(--brand-orange);
}
.cookie-actions .reject-btn {
  background: #fff;
  color: #ee5a3e;
}
.cookie-actions .reject-btn:hover {
  background: #ffd9c2;
  color: #ad3321;
}
.cookie-actions .settings-btn {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-actions .settings-btn:hover {
  background: var(--brand-primary);
  color: var(--brand-yellow);
}

.cookie-modal {
  display: flex;
  flex-direction: column;
  min-width: 310px;
  max-width: 98vw;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px 0 rgba(37,97,69,0.17);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%) scale(0.98);
  z-index: 9800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s, transform 0.33s var(--transition);
  padding: 30px 24px 22px 24px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: initial;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.04rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--brand-yellow);
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.cookie-essential {
  font-weight: 700;
  color: var(--brand-secondary);
}
.cookie-modal .cookie-actions {
  margin-top: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  background: var(--brand-yellow);
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.23s;
}
.cookie-modal .close-modal:hover {
  background: var(--brand-orange);
}

/********************
 FORMS & CONTACT DETAIL LISTS
********************/
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  padding: 11px 18px;
  margin-bottom: 8px;
}
.contact-details img {
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

/***************************
 BLOG POSTS & LISTS
****************************/
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.blog-list ul li {
  border-left: 5px solid var(--brand-primary);
  background: var(--brand-accent);
  padding-left: 16px;
  border-radius: var(--radius-sm);
}

/****************
 GENERAL SPACING
*****************/
main {
  margin-bottom: 64px;
  margin-top: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid, .benefits-grid, .team-list, .faq-accordion {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

/***********************
 PLAYFUL DYNAMIC ANIMATION
************************/
.cta-btn {
  box-shadow: var(--shadow), 0 0px 0px 0 var(--brand-yellow); /* highlight anim shadow */
}
.cta-btn:active {
  box-shadow: 0 1px 2px 0 var(--brand-yellow);
  background: var(--brand-yellow);
}
.cta-btn::after {
  content: "✨";
  margin-left: 7px;
  font-size: 1.11em;
  animation: ctablinkpop 1s infinite alternate ease-in-out;
}
@keyframes ctablinkpop {
  0% {transform: scale(1) rotate(-6deg);}
  100% {transform: scale(1.25) rotate(6deg);}
}

.content-wrapper h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 5px;
  background: var(--brand-yellow);
  border-radius: 3px;
  margin: 8px 0 0 0;
}

/*********************
 MEDIA QUERIES - RESPONSIVE LAYOUT
*********************/
@media (max-width: 992px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .benefits-grid {
    flex-direction: column;
    gap: 18px;
  }
  .team-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    padding: 11px 16px;
    font-size: 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero, .wohnideen-hero, .projekte-hero, .blog-hero, .contact-hero, .thank-you, .tipps-hero {
    padding: 22px 0 32px 0;
    min-height: 120px;
  }
  .content-wrapper {
    gap: 14px;
    padding: 0 2px;
  }
  .feature-grid, .benefits-grid, .team-list {
    flex-direction: column;
    gap: 12px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 5px;
  }
  .card, .testimonial-card, .faq-accordion > div, .eco-tips, .contact-details li {
    min-width: 0;
    font-size: 1rem;
    padding: 16px 8px;
  }
  .footer-brand {
    gap: 8px;
    font-size: 0.99rem;
  }
  .footer-social a img, .footer-contact img {
    width: 23px;
    height: 23px;
  }
}
@media (max-width: 570px) {
  .container {
    padding: 0 6px;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .cta-btn {
    font-size: 14px;
    padding: 10px 9px;
  }
}

/********************
 UTILITY CLASSES
*******************/
.hide {
  display: none !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.justify-center {
  justify-content: center;
}
.align-center {
  align-items: center;
}
.align-start {
  align-items: flex-start;
}

/* End of CSS file */