/*

TemplateMo 584 Pod Talk

https://templatemo.com/tm-584-pod-talk

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    /* Light theme palette for analytics SaaS */
    --white-color: #ffffff;
    --primary-color: #2563eb; /* blue accent */
    --secondary-color: #0ea5e9; /* cyan accent */
    --section-bg-color: #f3f4f6; /* light gray for sections */
    --custom-btn-bg-color: #2563eb;
    --custom-btn-bg-hover-color: #1d4ed8;
    --dark-color: #0f172a; /* headings */
    --p-color: #4b5563; /* body text */
    --border-color: #e5e7eb;
    --link-hover-color: #1d4ed8;

    --body-font-family: "Bruno Ace SC", cursive;
    --title-font-family: "Bruno Ace SC", cursive;

    --h1-font-size: 58px;
    --h2-font-size: 46px;
    --h3-font-size: 32px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 22px;
    --p-font-size: 16px;
    --menu-font-size: 14px;

    --border-radius-large: 100px;
    --border-radius-medium: 20px;
    --border-radius-small: 10px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

body {
    font-family: 'Bruno Ace SC', cursive;
    background-color: #f9fafb; /* light background */
    color: #111827;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

:root {
    --green-dark: #0f172a;
    --green-accent: #2563eb;
    --gray-light: #f3f4f6;
    --gray: #e5e7eb;
    --white: #ffffff;
    --text-color: #111827;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-semibold);
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

a,
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-title-wrap {
    position: relative;
}

.section-title-wrap::after {
    content: "";
    background: var(--section-bg-color);
    width: 100%;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.section-title {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-large);
    display: inline-block;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    padding: 10px 25px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

main {
    position: relative;
    z-index: 1;
}

.section-bg {
    background-color: var(--section-bg-color);
}

.section-overlay {
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.section-overlay+.container {
    position: relative;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
    color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
    background: var(--custom-btn-bg-color);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    line-height: normal;
    transition: all 0.3s;
    padding: 10px 20px;
}

.custom-btn:hover {
    background: var(--custom-btn-bg-hover-color);
    color: var(--white-color);
}

.custom-border-btn {
    background: transparent;
    border: 2px solid var(--custom-btn-bg-color);
    color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
    background: var(--custom-btn-bg-color);
    border-color: transparent;
    color: var(--primary-color);
}

.custom-btn-bg-white {
    border-color: var(--white-color);
    color: var(--white-color);
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
    background-image: url("../images/templatemo-wave-header.jpg"),
        linear-gradient(#e5edff, #eff6ff);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 480px;
    position: relative;
}

.site-header h2 {
    color: var(--white-color);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
:root {
  --clr-dark-green: #0f172a;
  --clr-light-gray: #f3f4f6;
  --clr-white: #ffffff;
  --clr-accent: #2563eb;
  --transition-time: 0.3s;
}

.navbar {
  background: #ffffff;
  padding: 1rem 1.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(15,23,42,0.08);
}

.navbar .navbar-brand h2 {
  color: #111827;
  font-weight: 700;
  margin: 0;
}

.mobile-menu-list,
.mobile-menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  position: relative;
}

.mobile-menu-list a,
.mobile-menu-list button.submenu-toggle {
  display: block;
  padding: 0.5rem 1rem;
  color: #111827;
  background: none;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Bruno Ace SC', cursive;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mobile-menu-list a:hover,
.mobile-menu-list button.submenu-toggle:hover,
.mobile-menu-list a:focus,
.mobile-menu-list button.submenu-toggle:focus {
  color: #2563eb;
  outline: none;
}

.mobile-menu-list ul.submenu {
  display: none;
  background-color: #f9fafb; 
  border-radius: 4px;
  margin-top: 0.3rem;
}

button.submenu-toggle::after {
  content: " ▼";
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

@media (max-width: 991px) {
  .mobile-menu-list {
    display: none; 
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 6px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
  }

  .mobile-menu-list.active {
    display: flex;
  }

  button.submenu-toggle[aria-expanded="true"] + ul.submenu {
    display: block;
  }

  .mobile-menu-toggle {
    display: inline-block;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #111827;
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none; 
  }

  .mobile-menu-list {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .mobile-menu-list li {
  }

  .mobile-menu-list ul.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 0.5rem 0;
    border-radius: 4px;
    min-width: 200px;
    display: none;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    z-index: 10;
    border: 1px solid #e5e7eb;
  }

  .mobile-menu-list li:hover > ul.submenu {
    display: block;
  }

  button.submenu-toggle::after {
    content: " ▼";
  }

  button.submenu-toggle {
    background: none;
    border: none;
    cursor: default;
    padding-right: 1rem;
    color: #111827;
  }

  .mobile-menu-list ul.submenu li a {
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    display: block;
  }

  .mobile-menu-list li a.btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-list li a.btn-primary:hover,
  .mobile-menu-list li a.btn-primary:focus {
    background-color: #2563eb;
    outline: none;
    color: #ffffff;
  }
}



/*---------------------------------------
  CAROUSEL        
-----------------------------------------*/
.first-section {
    background-image: url("../images/templatemo-wave-banner.jpg"),
        linear-gradient(#f9fafb, #ffffff);
    background-repeat: no-repeat;
    background-size: 108% 76%;
    background-position: top;
    padding-top: 200px;
}

.owl-carousel {
    text-align: center;
}

.owl-carousel-image {
    display: block;
}

.owl-carousel .owl-item .owl-carousel-verified-image {
    display: inline-block;
    width: 30px;
    height: auto;
    position: relative;
    right: 5px;
}

.verified-image {
    display: inline-block;
    width: 20px;
    height: auto;
}

.owl-carousel .owl-item {
    opacity: 0.35;
}

.owl-carousel .owl-item.active.center {
    opacity: 1;
}

.owl-carousel-info-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.owl-carousel-info {
    background-color: var(--section-bg-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 30px;
}

.badge {
    background-color: var(--custom-btn-bg-color);
    font-family: var(--title-font-family);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    padding-bottom: 5px;
}

.owl-carousel-info-wrap .social-share,
.team-thumb .social-share {
    position: absolute;
    right: 0;
    bottom: 0;
}

.owl-carousel-info-wrap .social-icon,
.team-thumb .social-icon {
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(0);
    padding-right: 20px;
    padding-left: 20px;
}

.owl-carousel .owl-item.active.center .owl-carousel-info-wrap:hover .social-icon,
.team-thumb:hover .social-icon {
    transform: translateY(-100%);
    opacity: 1;
}

.owl-carousel-info-wrap .social-icon-item,
.owl-carousel-info-wrap .social-icon-link,
.team-thumb .social-icon-item,
.team-thumb .social-icon-link {
    display: block;
    margin-bottom: 10px;
    margin-left: auto;
}

.owl-carousel-info-wrap .social-icon-link {
    margin-top: 5px;
    margin-bottom: 5px;
}

.owl-carousel .owl-dots {
    background-color: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-radius: var(--border-radius-large);
    display: inline-block;
    margin: auto;
    margin-top: 40px;
    padding: 15px 25px;
    padding-bottom: 7px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BLOCK              
-----------------------------------------*/
.custom-block {
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
    padding: 30px;
    transition: all 0.3s ease;
}

.custom-block:hover {
    background: var(--white-color);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    border-color: transparent;
    transform: translateY(-3px);
}

.custom-block-info {
    display: block;
    padding: 10px 20px;
    padding-bottom: 0;
}

.custom-block-image-wrap {
    position: relative;
    display: block;
    height: 100%;
}

.custom-block-image-wrap>a {
    display: block;
}

.custom-block-image {
    border-radius: var(--border-radius-medium);
    display: block;
    width: 112px;
    height: 112px;
    object-fit: cover;
}

.custom-block-image-detail-page .custom-block-image {
    width: 100%;
    height: 212px;
}

.custom-block .custom-block-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-block-icon-wrap {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.custom-block-icon-wrap .section-overlay {
    opacity: 0.25;
}

.custom-block-btn-group {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 20px;
}

.custom-block-btn-group .custom-block-icon {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.custom-block-icon {
    background: var(--primary-color);
    border-radius: var(--border-radius-medium);
    font-size: var(--p-font-size);
    color: var(--white-color);
    text-align: center;
    width: 32.5px;
    height: 32.5px;
    line-height: 32.5px;
    transition: all 0.3s;
}

.custom-block-icon:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.custom-block .custom-btn {
    font-size: var(--menu-font-size);
    padding: 7px 15px;
}

.custom-block .custom-block-info+div .badge {
    background-color: var(--dark-color);
    color: var(--white-color);
    border-radius: 50px !important;
    font-size: var(--menu-font-size);
    display: flex;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.custom-block .custom-block-info+div .badge:hover {
    background-color: var(--secondary-color);
}

.custom-block-full {
    background-color: var(--section-bg-color);
    border-color: transparent;
}

.custom-block-full:hover {
    border-color: var(--primary-color);
}

.custom-block-full .custom-block-info {
    padding: 20px;
    padding-bottom: 0;
}

.custom-block-full .custom-block-image {
    width: 100%;
    height: 210px;
}

.custom-block-full .social-share {
    position: absolute;
    top: 0;
    right: 0;
    margin: 50px;
}

.custom-block-top small {
    color: var(--p-color);
    font-family: var(--title-font-family);
}

.custom-block-top .badge {
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
    vertical-align: middle;
    height: 26.64px;
    line-height: 20px;
}

.custom-block-bottom a:hover span {
    color: var(--primary-color);
}

.custom-block-bottom a span {
    font-family: var(--title-font-family);
    color: var(--p-color);
    text-transform: uppercase;
    margin-left: 3px;
}

.custom-block-overlay {
    border-color: transparent;
    padding: 0;
}

.custom-block-overlay .custom-block-image {
    margin: auto;
    width: 100%;
    height: 210px;
    transition: all 0.3s;
}

.custom-block-overlay:hover .custom-block-image {
    padding: 15px;
    padding-bottom: 0;
}

.custom-block-overlay-info {
    padding: 15px 20px 20px 20px;
}

/*---------------------------------------
  PROIFLE BLOCK               
-----------------------------------------*/
.profile-block {
    margin-top: 10px;
}

.profile-block-image {
    border-radius: var(--border-radius-large);
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
}

.profile-block p strong {
    display: block;
    font-family: var(--title-font-family);
}

.profile-detail-block {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-large);
    padding: 25px 35px;
}

.profile-detail-block p {
    margin-bottom: 0;
}

/*---------------------------------------
  ABOUT & TEAM SECTION               
-----------------------------------------*/
.about-image {
    border-radius: var(--border-radius-medium);
    display: block;
}

.team-thumb {
    border-radius: var(--border-radius-medium);
    position: relative;
    overflow: hidden;
}

.team-info {
    background-color: var(--white-color);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 30px;
}

/*---------------------------------------
  PAGINATION               
-----------------------------------------*/
.pagination {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius-large);
    padding: 20px;
}

.page-link {
    border: 0;
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    font-family: var(--title-font-family);
    margin: 0 5px;
    padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.page-item:first-child .page-link {
    margin-right: 10px;
}

.active>.page-link,
.page-link.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-info p strong {
    font-family: var(--title-font-family);
    min-width: 90px;
}

.contact-info p a {
    color: var(--p-color);
    border-bottom: 1px solid;
    padding-bottom: 3px;
}

.contact-info p a:hover {
    color: var(--secondary-color);
}

.google-map {
    border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
    border-radius: var(--border-radius-medium);
    height: 150px;
}

/*---------------------------------------
  SUBSCRIBE FORM               
-----------------------------------------*/
.subscribe-form-wrap {
    border: 1px solid var(--white-color);
    border-radius: var(--border-radius-small);
    width: 80%;
    position: relative;
    top: 12px;
    padding: 35px;
}

.subscribe-form-wrap h6 {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    bottom: 55px;
    margin-bottom: -25px;
    padding: 8px;
}

.subscribe-form #subscribe-email {
    border: 0;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.subscribe-form #submit {
    border-radius: 0 0 10px 10px;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
    border-radius: var(--border-radius-small);
    color: var(--p-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    margin-bottom: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    outline: none;
}

.form-floating>label {
    padding-left: 20px;
}

.custom-form button[type="submit"] {
    background: var(--custom-btn-bg-color);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s;
    margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
    background: var(--custom-btn-bg-hover-color);
    border-color: transparent;
}

/*---------------------------------------
  SEARCH FORM               
-----------------------------------------*/
.search-form .form-control {
    border: 0;
    margin-bottom: 0;
}

.search-form button[type="submit"] {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    max-width: 50px;
    height: 100%;
    padding-left: 15px;
}

.search-form button[type="submit"]:hover {
    background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
    background: #f9fafb;
    margin-top: -80px;
    padding-top: 100px;
    padding-bottom: 150px;
}

.site-footer>.container {
    position: relative;
    top: 50px;
    padding-top: 100px;
}

.site-footer-title,
.site-footer p {
    color: var(--white-color);
}

.site-footer p strong {
    font-family: var(--title-font-family);
}

.site-footer p a {
    color: var(--white-color);
    border-bottom: 1px solid;
    padding-bottom: 3px;
}

.site-footer p a:hover {
    color: var(--secondary-color);
}

.site-footer-thumb a img {
    display: block;
    width: 120px;
    min-width: 120px;
    height: auto;
}

.site-footer-links {
    margin-bottom: 0;
    padding-left: 0;
}

.site-footer-link-item {
    display: inline-block;
    list-style: none;
    margin-right: 10px;
    margin-left: 10px;
}

.site-footer-link {
    color: var(--white-color);
    font-size: var(--p-font-size);
    line-height: inherit;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
    margin: 0;
    padding: 0;
}

.social-icon-item {
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.social-icon-link {
    background: var(--secondary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--p-font-size);
    display: block;
    margin-right: 10px;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 2160px) {
    .first-section {
        background-size: 100% 90%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }
}

@media screen and (min-width: 1600px) {
    .site-footer {
        padding-top: 250px;
    }
}

@media screen and (max-width: 1240px) {
    .first-section {
        background-size: 116%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 32px;
    }

    h4 {
        font-size: 28px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    .first-section {
        background-size: 160% 66%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }

    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .navbar-nav {
        background-color: var(--primary-color);
        border-radius: var(--border-radius-medium);
        padding: 30px;
    }

    .navbar-nav .nav-link {
        padding: 5px 0;
    }

    .navbar-nav .dropdown-menu {
        position: relative;
        left: 10px;
        opacity: 1;
        pointer-events: auto;
        max-width: 155px;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .navbar-expand-lg .navbar-nav {
        padding-bottom: 20px;
    }

    .nav-tabs .nav-link:first-child {
        margin-right: 5px;
    }

    .nav-tabs .nav-link {
        font-size: var(--copyright-font-size);
        padding: 10px;
    }

    .copyright-text {
        text-align: center;
    }

    .site-footer {
        margin-top: -200px;
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

@media screen and (max-width: 540px) {
    .first-section {
        background-size: 180% 65%;
        /* T o o p l a t e . c o m   C u s t o m i z e d */
    }

    .custom-block .custom-block-top {
        flex-direction: column;
    }

    .custom-block .custom-block-top small:last-child {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 20px;
    }
}

@media screen and (max-width: 414px) {
    .search-form {
        max-width: 200px;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/*---------------------------------------
  COOKIE BANNER STYLES              
-----------------------------------------*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: none;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.12);
    z-index: 9999;
    padding: 24px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
    animation: cookieBannerSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cookie-banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.cookie-banner-text a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
    color: #1d4ed8;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner-btn-accept {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cookie-banner-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: #2563eb;
}

.cookie-banner-btn-decline {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.cookie-banner-btn-decline:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #2563eb;
}

.hidden {
    display: none;
}

/* Cookie Banner Animations */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes cookieBannerSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Cookie Banner Focus States */
.cookie-banner-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.cookie-banner-btn:active {
    transform: translateY(0);
}

.cookie-banner-btn-accept:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Cookie Banner Icon Animation */
.cookie-banner-icon svg {
    transition: transform 0.3s ease;
}

.cookie-banner-icon:hover svg {
    transform: rotate(15deg);
}

/* Cookie Wrapper Styles (for pages using cookie-wrapper class) */
.cookie-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.12);
    z-index: 9999;
    padding: 24px 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    box-sizing: border-box;
    display: none;
}

.cookie-wrapper.show {
    display: block;
    transform: translateY(0);
    animation: cookieBannerSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cookie-wrapper > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cookie-wrapper > div:first-child i {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 24px;
    flex-shrink: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

.cookie-wrapper > div:first-child h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.cookie-wrapper .data {
    margin-bottom: 16px;
}

.cookie-wrapper .data p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.cookie-wrapper .data a {
    color: #2563eb;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-wrapper .data a:hover {
    color: #1d4ed8;
}

.cookie-wrapper .buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-wrapper .cookie-button {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Bruno Ace SC', cursive;
}

.cookie-wrapper .cookie-button:first-child {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cookie-wrapper .cookie-button:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: #2563eb;
}

.cookie-wrapper .cookie-button:first-child:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.cookie-wrapper .cookie-button:last-child {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.cookie-wrapper .cookie-button:last-child:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    color: #2563eb;
}

.cookie-wrapper .cookie-button:last-child:active {
    transform: translateY(0);
}

.cookie-wrapper .cookie-button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cookie-wrapper {
        padding: 20px 16px;
    }

    .cookie-wrapper > div:first-child {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .cookie-wrapper > div:first-child i {
        align-self: center;
    }

    .cookie-wrapper .data {
        text-align: center;
        margin-bottom: 16px;
    }

    .cookie-wrapper .buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-wrapper .cookie-button {
        width: 100%;
    }
    .cookie-banner {
        padding: 20px 16px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner-icon {
        align-self: center;
    }

    .cookie-banner-text {
        text-align: center;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cookie-banner-btn {
        width: 100%;
    }
}


/* new styles */

/*-----------------------------------------
  DEMO SECTION              
-----------------------------------------*/
.product-showcase,
.deep-focus {
  background: #ffffff;
  color: #111827;
  padding: 120px 20px;
  font-family: var(--body-font-family);
  position: relative;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.product-showcase,
.deep-focus .container {
  max-width: 1280px;
  margin: 0 auto;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.demo-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.demo-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.demo-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.demo-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.demo-stats {
  display: flex;
  gap: 32px;
  padding: 24px 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.demo-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.demo-stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5edff;
  border-radius: 16px;
  color: #3b82f6;
  flex-shrink: 0;
}

.demo-stat-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.demo-stat-label {
  font-size: 0.875rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.demo-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.demo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: #ffffff;
}

.demo-btn-primary svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.demo-btn-primary:hover svg {
  transform: translateX(4px);
}

.demo-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: #ffffff;
  color: #3b82f6;
  text-decoration: none;
  border: 2px solid #3b82f6;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.demo-btn-secondary:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

.demo-right {
  position: relative;
}

.demo-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  border: 2px solid #e2e8f0;
}

.demo-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.demo-image-wrapper:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .demo-content {
    gap: 60px;
  }
  
  .demo-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .product-showcase,
.deep-focus {
    padding: 80px 20px;
  }

  .demo-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .demo-right {
    order: -1;
  }

  .demo-title {
    font-size: 2rem;
  }

  .demo-description {
    font-size: 1rem;
  }

  .demo-stats {
    flex-direction: column;
    gap: 24px;
  }

  .demo-actions {
    flex-direction: column;
  }

  .demo-btn-primary,
  .demo-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-showcase,
.deep-focus {
    padding: 60px 16px;
  }

  .demo-title {
    font-size: 1.75rem;
  }
}



/*-----------------------------------------
  TEAM SECTION              
-----------------------------------------*/
.expert-team,
.wachherz-team {
  background: #f9fafb;
  padding: 120px 20px;
  color: #111827;
  font-family: var(--body-font-family);
}

.expert-team,
.wachherz-team .container {
  max-width: 1280px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.team-title {
  margin: 0 0 16px 0;
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.team-subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.team-card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
  transform: scale(1.1);
}

.team-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.team-card-role {
  font-size: 1rem;
  font-weight: 600;
  color: #3b82f6;
  margin: 0;
}

.team-card-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-card-details li {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.team-card-details li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .team-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .expert-team,
.wachherz-team {
    padding: 80px 20px;
  }

  .team-header {
    margin-bottom: 48px;
  }

  .team-badge {
    padding: 6px 16px;
    font-size: 0.7rem;
  }

  .team-title {
    font-size: 2rem;
  }

  .team-subtitle {
    font-size: 1rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-card-image {
    height: 260px;
  }

  .team-card-content {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .expert-team,
.wachherz-team {
    padding: 60px 16px;
  }

  .team-title {
    font-size: 1.75rem;
  }

  .team-card-image {
    height: 240px;
  }
}

/*-----------------------------------------
  VALUES SECTION              
-----------------------------------------*/
.analytics-features,
.revenue-model,
.wachherz-values {
  background-color: #f9fafb;
  color: #111827;
  padding: 120px 20px;
  font-family: var(--body-font-family);
}

.analytics-features,
.revenue-model,
.wachherz-values-container {
  max-width: 1280px;
  margin: 0 auto;
}

.analytics-features,
.revenue-model,
.wachherz-values-header {
  text-align: center;
  margin-bottom: 64px;
}

.values-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.analytics-features,
.revenue-model,
.wachherz-values-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.analytics-features,
.revenue-model,
.wachherz-values-header p {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.business-model .wachherz-value-card {
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}

.business-model .wachherz-value-card .value-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5edff;
  border-radius: 16px;
  color: #3b82f6;
  flex-shrink: 0;
}

.business-model .wachherz-value-card .wachherz-value-content {
  flex: 1;
}

@media (max-width: 768px) {
  .business-model .wachherz-value-card {
    flex-direction: column;
  }
}

.analytics-features,
.revenue-model,
.wachherz-values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.wachherz-value-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e2e8f0;
}

.wachherz-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

.wachherz-value-image {
  background-size: cover;
  background-position: center;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.wachherz-value-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wachherz-value-card:hover .wachherz-value-image::after {
  opacity: 1;
}

.wachherz-value-content {
  padding: 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wachherz-value-content h3 {
  color: #0f172a;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
}

.wachherz-value-content p {
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

@media (max-width: 1024px) {
  .analytics-features,
.revenue-model,
.wachherz-values-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .analytics-features,
.revenue-model,
.wachherz-values-header h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .analytics-features,
.revenue-model,
.wachherz-values {
    padding: 80px 20px;
  }

  .analytics-features,
.revenue-model,
.wachherz-values-header {
    margin-bottom: 48px;
  }

  .analytics-features,
.revenue-model,
.wachherz-values-header h2 {
    font-size: 2rem;
  }

  .analytics-features,
.revenue-model,
.wachherz-values-header p {
    font-size: 1rem;
  }

  .analytics-features,
.revenue-model,
.wachherz-values-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wachherz-value-image {
    height: 180px;
  }

  .wachherz-value-content {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .analytics-features,
.revenue-model,
.wachherz-values {
    padding: 60px 16px;
  }

  .analytics-features,
.revenue-model,
.wachherz-values-header h2 {
    font-size: 1.75rem;
  }
}

.wachherz-connect-about {
  background-color: #ffffff;
  color: #111827;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.wachherz-contact-info {
  background-color: #f9fafb;
  color: #111827;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.wachherz-contact-info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wachherz-contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 40px;
  text-align: center;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.contact-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.contact-item:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.contact-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item h3 svg {
  flex-shrink: 0;
  color: #2563eb;
}

.contact-item p {
  color: #4b5563;
  line-height: 1.7;
  margin: 8px 0;
}

.contact-item a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .wachherz-contact-info h2 {
    font-size: 2rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }
}

.wachherz-container {
  max-width: 1100px;
  margin: 0 auto;
}

.wachherz-connect-about-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.wachherz-about {
  flex: 1 1 450px;
  max-width: 500px;
}

.wachherz-about-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #f6d254;
  margin-bottom: 24px;
  line-height: 1.2;
}

.wachherz-about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

.wachherz-contact-form {
  flex: 1 1 450px;
  max-width: 500px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.wachherz-contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
  text-align: center;
}

.wachherz-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.wachherz-form-row input {
  flex: 1 1 220px;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  color: #111827;
  outline-offset: 2px;
  transition: background-color 0.3s ease, outline-offset 0.3s ease;
}

.wachherz-form-row input:focus {
  background-color: #ffffff;
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
}

.wachherz-contact-form > input[type="text"]:not(.wachherz-form-row input) {
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background-color: #ffffff;
  color: #111827;
  margin-bottom: 20px;
  outline-offset: 2px;
  transition: background-color 0.3s ease, outline-offset 0.3s ease;
}

.wachherz-contact-form > input[type="text"]:not(.wachherz-form-row input):focus {
  background-color: #ffffff;
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
}

.wachherz-contact-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 16px 18px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #111827;
  margin-bottom: 30px;
  outline-offset: 2px;
  transition: background-color 0.3s ease, outline-offset 0.3s ease;
}

.wachherz-contact-form textarea:focus {
  background-color: #ffffff;
  outline: 2px solid #3b82f6;
  outline-offset: 0;
  border-color: #3b82f6;
}

.wachherz-contact-form button {
  padding: 15px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #3b82f6;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.wachherz-contact-form button:hover {
  background-color: #2563eb;
}

@media (max-width: 900px) {
  .wachherz-connect-about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .wachherz-about, .wachherz-contact-form {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .wachherz-form-row {
    flex-direction: column;
  }

  .wachherz-form-row input {
    flex: 1 1 100%;
  }
}

/*---------------------------------------
  CTA BANNER SECTION              
-----------------------------------------*/
.get-started-banner,
.wachherz-cta-banner {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding: 120px 20px;
  position: relative;
  font-family: var(--body-font-family);
}

.get-started-banner,
.wachherz-cta-banner .container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-banner-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: #ffffff;
}

.cta-btn-primary svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover svg {
  transform: translateX(4px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: #ffffff;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-secondary:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
}

.cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-feature {
  font-size: 0.9375rem;
  color: #475569;
  font-weight: 500;
}

@media (max-width: 768px) {
  .get-started-banner,
.wachherz-cta-banner {
    padding: 80px 20px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .get-started-banner,
.wachherz-cta-banner {
    padding: 60px 16px;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}

/*---------------------------------------
  PRICING SECTION              
-----------------------------------------*/
/*-----------------------------------------
  PRICING SECTION              
-----------------------------------------*/
.analytics-pricing,
.wachherz-pricing {
  background: #f9fafb;
  color: #111827;
  padding: 120px 20px;
  font-family: var(--body-font-family);
  position: relative;
}

.analytics-pricing,
.wachherz-pricing .container {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  backdrop-filter: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(59, 130, 246, 0.5) transparent;
}

.pricing-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.pricing-table-wrapper::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 4px;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.5);
  border-radius: 4px;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.7);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.pricing-table thead {
  background: #f3f4f6;
}

.pricing-table th {
  padding: 24px 20px;
  text-align: left;
  font-weight: 700;
  color: #0f172a;
  font-size: 1rem;
  border-bottom: 2px solid #e5e7eb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
}

.pricing-table td {
  padding: 28px 20px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-table tbody tr:hover {
  background: #f9fafb;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.course-desc {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 400;
  margin-top: 4px;
}

.detail {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 4px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-features li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  color: #4b5563;
}

.course-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
}

.price-note {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
  margin-top: 4px;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: #ffffff;
}

.pricing-note {
  margin-top: 40px;
  padding: 24px;
  background: #f3f4f6;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.pricing-note p {
  margin: 8px 0;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-note strong {
  color: #64748b;
}

@media (max-width: 1200px) {
  .pricing-table {
    min-width: 900px;
  }
  
  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) transparent;
  }
  
  .pricing-table-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  
  .pricing-table-wrapper::-webkit-scrollbar-track {
    background: rgba(15, 10, 26, 0.5);
    border-radius: 4px;
  }
  
  .pricing-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
  }
  
  .pricing-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
  }
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 16px 12px;
    font-size: 0.85rem;
  }

  .price {
    font-size: 1.5rem;
  }
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
  border-color: #cbd5e1;
}

.pricing-card.featured {
  border-color: #3b82f6;
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.25);
}

.pricing-card-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 8px;
}

.pricing-card-badge.featured-badge {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
  color: #1e40af;
}

.pricing-card-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

.pricing-card-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 4px;
}

.pricing-card-price-main {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.pricing-card-price-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.pricing-card-billing {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0 0 16px 0;
}

.pricing-card-meta {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 8px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

.pricing-card-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #22c55e;
  width: 18px;
  height: 18px;
}

.pricing-card-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid #e2e8f0;
}

.pricing-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  border: 2px solid #3b82f6;
  background: #ffffff;
  color: #3b82f6;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pricing-card-button:hover {
  background: #3b82f6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pricing-card.featured .pricing-card-button {
  background: #3b82f6;
  color: #ffffff;
}

.pricing-card.featured .pricing-card-button:hover {
  background: #2563eb;
  border-color: #2563eb;
}

.pricing-footnote {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .pricing-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .analytics-pricing,
.wachherz-pricing {
    padding: 80px 20px;
  }

  .pricing-header {
    margin-bottom: 48px;
  }

  .pricing-badge {
    padding: 6px 16px;
    font-size: 0.7rem;
  }

  .pricing-title {
    font-size: 2rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-card-name {
    font-size: 1.5rem;
  }

  .pricing-card-price-main {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .analytics-pricing,
.wachherz-pricing {
    padding: 60px 16px;
  }

  .pricing-title {
    font-size: 1.75rem;
  }

  .pricing-card {
    padding: 24px 20px;
  }
}

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/*-----------------------------------------
  NEWS SECTION              
-----------------------------------------*/
.insights-blog,
.wachherz-news {
  background: #ffffff;
  color: #111827;
  font-family: var(--body-font-family);
  padding: 120px 20px;
  position: relative;
}

.insights-blog,
.wachherz-news .container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.news-intro {
  text-align: center;
  margin-bottom: 64px;
}

.news-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.news-title {
  margin: 0 0 16px 0;
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.news-subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.news-item {
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.news-item:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.news-item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item:hover .news-item-image img {
  transform: scale(1.1);
}

.news-item-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-item-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-item-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 0;
}

.news-item-meta-text {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.news-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.news-item-excerpt {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.news-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #3b82f6;
  text-decoration: none;
  margin-top: 8px;
  transition: all 0.2s ease;
}

.news-item-link svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.news-item-link:hover {
  color: #2563eb;
  gap: 12px;
}

.news-item-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .news-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .insights-blog,
.wachherz-news {
    padding: 80px 20px;
  }

  .news-intro {
    margin-bottom: 48px;
  }

  .news-badge {
    padding: 6px 16px;
    font-size: 0.7rem;
  }

  .news-title {
    font-size: 2rem;
  }

  .news-subtitle {
    font-size: 1rem;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

  .news-item-image {
    height: 180px;
  }

  .news-item-content {
    padding: 20px;
  }

  .news-item-title {
    font-size: 1.125rem;
  }

  .news-item-excerpt {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .insights-blog,
.wachherz-news {
    padding: 60px 16px;
  }

  .news-title {
    font-size: 1.75rem;
  }

  .news-item-image {
    height: 160px;
  }
}

.wachherz-footer {
  background-color: #1c322b;
  color: #b3c1b0;
  padding: 60px 20px 40px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  user-select: none;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-subscribe {
  flex: 1 1 320px;
  max-width: 480px;
}

.footer-subscribe h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a0b297;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-subscribe p {
  margin-bottom: 20px;
  color: #91a483;
}

.subscribe-form {
  display: flex;
  gap: 12px;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: 2px solid #36533f;
  background-color: #2a4333;
  color: #d7e0cd;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: #8daf84;
  background-color: #2f4b3b;
}

.subscribe-form button {
  padding: 12px 24px;
  background-color: #8daf84;
  border: none;
  border-radius: 6px;
  color: #1c322b;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover,
.subscribe-form button:focus {
  background-color: #a5bf9e;
}

.footer-contact {
  flex: 1 1 280px;
  max-width: 400px;
}

.footer-contact h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #a0b297;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-contact p {
  color: #91a483;
  margin-bottom: 15px;
}

.contact-link {
  color: #8daf84;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
  border-color: #a5bf9e;
  color: #a5bf9e;
}

.footer-bottom {
  border-top: 1px solid #36533f;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #91a483;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #a5bf9e;
}

.footer-copy {
  color: #728469;
  font-size: 0.85rem;
  font-weight: 400;
  user-select: none;
}

/*---------------------------------------
  NEW HEADER STYLES              
-----------------------------------------*/
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;

}

.main-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar {
  padding: 1rem 0;
  background: transparent;
  position: relative;
  width: 100%;
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--primary-color);
}

.brand-icon {
  font-size: 2rem;
  line-height: 1;
}

.brand-text {
  font-family: var(--title-font-family);
  color: var(--dark-color);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-menu a:hover {
  color: var(--primary-color);
}

.navbar-menu .has-dropdown > a {
  position: relative;
}

.navbar-menu .has-dropdown svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 4px;
}

.navbar-menu .has-dropdown:hover svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  border: 1px solid #e5e7eb;
}

.navbar-menu .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  padding: 0.75rem 1.5rem;
  display: block;
  color: var(--dark-color);
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: var(--section-bg-color);
  color: var(--primary-color);
}

.navbar-menu .btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  padding: 0.65rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.navbar-menu .btn-primary:hover {
  background: var(--custom-btn-bg-hover-color);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  color: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

main {
  margin-top: 80px;
}

/*---------------------------------------
  NEW FOOTER STYLES              
-----------------------------------------*/
/*---------------------------------------
  FOOTER SECTION              
-----------------------------------------*/
.main-footer {
  background: #ffffff;
  color: #111827;
  padding: 80px 0 0;
  margin-top: 0;
  font-family: var(--body-font-family);
  border-top: 2px solid #e2e8f0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #e2e8f0;
}

.footer-section h4.footer-title {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-family: var(--title-font-family);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-icon {
  font-size: 2rem;
}

.footer-brand .brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  font-family: var(--title-font-family);
}

.footer-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: #475569;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.social-link svg {
  flex-shrink: 0;
}

.social-link:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  color: #ffffff;
  border-color: #3b82f6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  display: inline-block;
}

.footer-links a:hover {
  color: #3b82f6;
  padding-left: 4px;
}

.newsletter-text {
  color: #64748b;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  border-radius: 999px;
  padding: 0.5rem;
  border: 2px solid #e2e8f0;
  transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: #3b82f6;
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  color: #111827;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #9ca3af;
}

.newsletter-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #3b82f6;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.newsletter-btn svg {
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.newsletter-note {
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright {
  color: #64748b;
  margin: 0;
  font-size: 0.9rem;
}

.footer-legal-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-company-info {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

.footer-company-info strong {
  color: #0f172a;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-contact-item {
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-contact-item:hover {
  color: #3b82f6;
}

.footer-contact-item svg {
  flex-shrink: 0;
}

.footer-email {
  color: #64748b;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-email:hover {
  color: #3b82f6;
}

.footer-email svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 60px 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-contact-info {
    align-items: flex-start;
  }
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
  background: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE HEADER & FOOTER              
-----------------------------------------*/
@media (max-width: 991px) {
  .main-header .container {
    justify-content: space-between;
  }

  .navbar-wrapper {
    justify-content: space-between;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    border-top: 2px solid #e2e8f0;
  }

  .navbar-menu.active {
    transform: translateX(0);
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .navbar-menu a {
    padding: 1rem 0;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--section-bg-color);
    margin: 0;
    border-radius: 0;
    padding-left: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact-info {
    align-items: center;
  }

  .footer-legal-info {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-social {
    justify-content: center;
  }
}

/*---------------------------------------
  ABOUT PAGE STYLES              
-----------------------------------------*/
.about-hero {
  position: relative;
  background: #f9fafb;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.about-hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.about-hero-badge svg {
  flex-shrink: 0;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 50px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}


.about-story {
  padding: 100px 20px;
  background: #ffffff;
}

.about-story-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-story-image {
  position: relative;
}

.about-story-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 20px;
  animation: fadeInLeft 1s ease-out;
}

.about-story-image-glow {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
  border-radius: 16px;
  position: relative;
}

.about-story-image-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: ringPulse 3s ease-in-out infinite;
}

.about-story-text {
  animation: fadeInRight 1s ease-out;
}

.about-section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-story-text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.about-story-quote {
  margin-top: 40px;
  padding: 30px;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.about-story-quote svg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  color: rgba(59, 130, 246, 0.2);
}

.about-story-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: #0f172a;
  margin-bottom: 12px;
}

.about-story-quote span {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
}

.about-mission {
  padding: 100px 20px;
  background: #f9fafb;
}

.about-mission-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-mission-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.about-mission-card:nth-child(1) { animation-delay: 0.1s; }
.about-mission-card:nth-child(2) { animation-delay: 0.2s; }
.about-mission-card:nth-child(3) { animation-delay: 0.3s; }
.about-mission-card:nth-child(4) { animation-delay: 0.4s; }
.about-mission-card:nth-child(5) { animation-delay: 0.5s; }

.about-mission-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.15);
}

.about-mission-icon {
  width: 64px;
  height: 64px;
  background: #dbeafe;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #2563eb;
}

.about-mission-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.about-mission-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.about-team {
  padding: 100px 20px;
  background: #ffffff;
}

.about-team-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-team-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  margin-top: 12px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-team-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.about-team-card:nth-child(1) { animation-delay: 0.1s; }
.about-team-card:nth-child(2) { animation-delay: 0.2s; }
.about-team-card:nth-child(3) { animation-delay: 0.3s; }
.about-team-card:nth-child(4) { animation-delay: 0.4s; }

.about-team-card:hover {
  transform: translateY(-10px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.about-team-card-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.about-team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-team-card:hover .about-team-card-image img {
  transform: scale(1.1);
}

.about-team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 10, 26, 0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
}

.about-team-card:hover .about-team-card-overlay {
  opacity: 1;
}

.about-team-card-social a {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.about-team-card-social a:hover {
  background: #2563eb;
  transform: scale(1.1);
}

.about-team-card-content {
  padding: 30px;
}

.about-team-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.about-team-card-role {
  font-size: 1rem;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-team-card-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 20px;
}

.about-team-card-skills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-team-card-skills li {
  padding: 6px 12px;
  background: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #64748b;
}

.about-cta {
  padding: 100px 20px;
  background: #f9fafb;
  text-align: center;
}

.about-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-cta-content p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: #3b82f6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.about-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: #fff;
}

/*---------------------------------------
  CONTACT PAGE STYLES              
-----------------------------------------*/
.contact-hero {
  position: relative;
  background: #f9fafb;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.contact-hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.contact-main {
  padding: 100px 20px;
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-wrapper {
  animation: fadeInLeft 1s ease-out;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form-header {
  margin-bottom: 40px;
}

.contact-form-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-form-header p {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.contact-form-group {
  margin-bottom: 24px;
}

.contact-form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #111827;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-form-checkbox label {
  margin: 0;
  font-weight: 400;
  line-height: 1.6;
}

.contact-form-checkbox label a {
  color: #2563eb;
  text-decoration: underline;
}

.contact-form-submit {
  width: 100%;
  padding: 16px;
  background: #3b82f6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  background: #2563eb;
}

.contact-form-submit svg {
  flex-shrink: 0;
}

.contact-form-group .invalid-feedback {
  display: none;
  color: #f87171;
  font-size: 0.875rem;
  margin-top: 6px;
}

.contact-form-group input.is-invalid,
.contact-form-group textarea.is-invalid {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.contact-form-group input.is-invalid:focus,
.contact-form-group textarea.is-invalid:focus {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}

.contact-form-group input.is-invalid ~ .invalid-feedback,
.contact-form-group textarea.is-invalid ~ .invalid-feedback {
  display: block;
}

.contact-form-group input.is-valid,
.contact-form-group textarea.is-valid {
  border-color: #10b981;
}

.contact-form-group input.is-valid:focus,
.contact-form-group textarea.is-valid:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.contact-form.was-validated .contact-form-group input:invalid ~ .invalid-feedback,
.contact-form.was-validated .contact-form-group textarea:invalid ~ .invalid-feedback {
  display: block;
}

.contact-form.was-validated .contact-form-group input:invalid,
.contact-form.was-validated .contact-form-group textarea:invalid {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.1);
}

.contact-info-wrapper {
  animation: fadeInRight 1s ease-out;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-header {
  margin-bottom: 40px;
}

.contact-info-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-info-header p {
  font-size: 1.1rem;
  color: #4b5563;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.contact-info-card:hover {
  transform: translateX(8px);
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.contact-info-card-highlight {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-color: #93c5fd;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #2563eb;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 8px;
}

.contact-info-card a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.contact-info-note {
  font-size: 0.9rem;
  color: #64748b;
}

.contact-info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 24px;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-cta:hover {
  background: #2563eb;
  transform: translateY(-2px);
  color: #fff;
}

.contact-faq-preview {
  padding: 100px 20px;
  background: #f9fafb;
}

.contact-faq-preview-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-faq-preview-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-faq-preview-content > p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 50px;
}

.contact-faq-preview-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  text-align: left;
}

.contact-faq-preview-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.contact-faq-preview-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-faq-preview-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.contact-faq-preview-link {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-faq-preview-link:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-2px);
}

/*---------------------------------------
  FAQ PAGE STYLES              
-----------------------------------------*/
.faq-hero {
  position: relative;
  background: #f9fafb;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.faq-hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.faq-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq-hero-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.faq-categories {
  padding: 40px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.faq-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-category-btn {
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  color: #4b5563;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: #dbeafe;
  border-color: #3b82f6;
  color: #1e40af;
}

.faq-main {
  padding: 80px 20px;
  background: #ffffff;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.faq-item.active {
  border-color: #3b82f6;
}

.faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
}

.faq-item-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-item-toggle {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item-toggle:hover {
  background: #bfdbfe;
  border-color: #3b82f6;
}

.faq-item.active .faq-item-toggle {
  background: #bfdbfe;
  transform: rotate(180deg);
}

.faq-item-toggle svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-item-content {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-item-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

.faq-cta {
  padding: 100px 20px;
  background: #f9fafb;
  text-align: center;
}

.faq-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.faq-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.faq-cta-content p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 40px;
  line-height: 1.6;
}

.faq-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-cta-button {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-cta-button-primary {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.faq-cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: #fff;
}

.faq-cta-button-secondary {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
}

.faq-cta-button-secondary:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}

/*---------------------------------------
  RESPONSIVE STYLES FOR NEW PAGES              
-----------------------------------------*/
@media (max-width: 991px) {
  .about-story-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-main {
    padding: 80px 15px;
    width: 100%;
    overflow-x: hidden;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form-wrapper,
  .contact-info-wrapper {
    width: 100%;
    max-width: 100%;
  }
  
  .contact-form,
  .contact-info-cards,
  .contact-info-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle,
  .contact-hero-subtitle,
  .faq-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-section-title {
    font-size: 2.2rem;
  }

  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .contact-faq-preview-list {
    grid-template-columns: 1fr;
  }

  .faq-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-cta-button {
    width: 100%;
    text-align: center;
  }
  
  /* About page specific */
  .about-story {
    padding: 80px 15px;
  }
  
  .about-story-image-glow {
    height: 300px;
  }
  
  .about-story-quote {
    padding: 24px;
    margin-top: 30px;
  }
  
  .about-story-quote p {
    font-size: 1.1rem;
  }
  
  .about-cta {
    padding: 80px 15px;
  }
  
  .about-cta-content h2 {
    font-size: 2rem;
  }
  
  .about-cta-content p {
    font-size: 1.1rem;
  }
  
  .about-cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  /* Contact page specific */
  .contact-faq-preview {
    padding: 80px 15px;
  }
  
  .contact-faq-preview-content h2 {
    font-size: 2rem;
  }
  
  .contact-faq-preview-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .contact-faq-preview-item {
    padding: 24px;
  }
  
  .contact-faq-preview-item h3 {
    font-size: 1.1rem;
  }
  
  .contact-faq-preview-link {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  
  /* FAQ page specific */
  .faq-categories {
    padding: 30px 15px;
  }
  
  .faq-categories-list {
    gap: 10px;
  }
  
  .faq-category-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
  
  .faq-main {
    padding: 60px 15px;
  }
  
  .faq-item {
    padding: 20px;
  }
  
  .faq-item-header h3 {
    font-size: 1.1rem;
    padding-right: 40px;
  }
  
  .faq-cta {
    padding: 80px 15px;
  }
  
  .faq-cta-content h2 {
    font-size: 2rem;
  }
  
  .faq-cta-content p {
    font-size: 1.1rem;
  }
  
  /* Legal pages specific */
  .legal-hero {
    padding: 100px 15px 60px;
  }
  
  .legal-hero-title {
    font-size: 2.5rem;
  }
  
  .legal-hero-subtitle {
    font-size: 1.1rem;
  }
  
  .legal-content {
    padding: 60px 15px;
  }
  
  .legal-intro {
    padding: 30px 20px;
  }
  
  .legal-intro p {
    font-size: 1.05rem;
  }
  
  .legal-section {
    margin-bottom: 50px;
  }
  
  .legal-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .legal-section-content {
    padding-left: 0;
    padding-top: 20px;
  }
  
  .legal-section-header h2 {
    font-size: 1.8rem;
  }
  
  .legal-section h3 {
    font-size: 1.4rem;
  }
  
  .legal-list {
    padding-left: 20px;
  }
  
  .legal-info-box {
    padding: 24px;
  }
  
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Thanks page specific */
  .thanks-section {
    min-height: 70vh;
    padding: 80px 15px;
  }
  
  .thanks-icon-circle {
    width: 100px;
    height: 100px;
  }
  
  .thanks-icon-circle svg {
    width: 50px;
    height: 50px;
  }
  
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .thanks-subtitle {
    font-size: 1.1rem;
  }
  
  .thanks-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .thanks-info-item {
    padding: 24px;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  
  .thanks-button {
    width: 100%;
    justify-content: center;
  }
  
  .thanks-additional {
    padding: 80px 15px;
  }
  
  .thanks-additional-content h2 {
    font-size: 2rem;
  }
  
  .thanks-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .thanks-step {
    padding-left: 0;
    padding-top: 70px;
    text-align: center;
  }
  
  .thanks-step-number {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*---------------------------------------
  LEGAL PAGES STYLES (Privacy, Cookie, Terms)              
-----------------------------------------*/
.legal-hero {
  position: relative;
  background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
  padding: 120px 20px 80px;
  overflow: hidden;
}

.legal-hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  animation: bgFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.legal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #93c5fd;
  border-radius: 50px;
  color: #1e40af;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.legal-hero-badge svg {
  flex-shrink: 0;
}

.legal-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.legal-hero-subtitle {
  font-size: 1.3rem;
  color: #4b5563;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.legal-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #64748b;
  animation: fadeInUp 1.2s ease-out 0.6s both;
}

.legal-content {
  padding: 100px 20px;
  background: #ffffff;
}

.legal-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-intro {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #3b82f6;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.legal-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

.legal-section {
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out both;
}

.legal-section:nth-child(2) { animation-delay: 0.1s; }
.legal-section:nth-child(3) { animation-delay: 0.2s; }
.legal-section:nth-child(4) { animation-delay: 0.3s; }
.legal-section:nth-child(5) { animation-delay: 0.4s; }
.legal-section:nth-child(6) { animation-delay: 0.5s; }
.legal-section:nth-child(7) { animation-delay: 0.6s; }
.legal-section:nth-child(8) { animation-delay: 0.7s; }
.legal-section:nth-child(9) { animation-delay: 0.8s; }
.legal-section:nth-child(10) { animation-delay: 0.9s; }
.legal-section:nth-child(11) { animation-delay: 1s; }
.legal-section:nth-child(12) { animation-delay: 1.1s; }
.legal-section:nth-child(13) { animation-delay: 1.2s; }

.legal-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e5e7eb;
}

.legal-section-number {
  width: 48px;
  height: 48px;
  background: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.legal-section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.legal-section-content {
  padding-left: 68px;
}

.legal-section-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.legal-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4b5563;
  border-bottom: 1px solid #e5e7eb;
}

.legal-list li:last-child {
  border-bottom: none;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
}

.legal-list-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.legal-list-item:hover {
  border-color: #3b82f6;
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.legal-list-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.legal-list-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.legal-list-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.legal-info-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.legal-info-box p {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-info-box a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-info-box a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.legal-grid-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.legal-grid-item:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.legal-grid-icon {
  width: 56px;
  height: 56px;
  background: #dbeafe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  margin-bottom: 20px;
}

.legal-grid-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.legal-grid-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.legal-rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.legal-right-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.legal-right-item:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.legal-right-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-right-item h3 svg {
  flex-shrink: 0;
  color: #2563eb;
}

.legal-right-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.legal-note {
  background: #f3f4f6;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
}

.legal-note p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.legal-note a {
  color: #2563eb;
  text-decoration: underline;
}

/*---------------------------------------
  THANKS PAGE STYLES              
-----------------------------------------*/
.thanks-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.thanks-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: bgFloat 20s ease-in-out infinite;
  pointer-events: none;
}

.thanks-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.thanks-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.thanks-icon-circle {
  width: 120px;
  height: 120px;
  background: #3b82f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: playButtonAppear 0.8s ease-out 0.3s both;
}

.thanks-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: ringPulse 2s ease-in-out infinite;
  z-index: 1;
}

.thanks-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.thanks-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 50px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.thanks-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
  text-align: left;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.thanks-info-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.thanks-info-item:hover {
  border-color: #3b82f6;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.thanks-info-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

.thanks-info-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.thanks-info-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.1s both;
}

.thanks-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-button svg {
  flex-shrink: 0;
}

.thanks-button-primary {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.thanks-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: #fff;
}

.thanks-button-secondary {
  background: transparent;
  border: 2px solid #3b82f6;
  color: #3b82f6;
}

.thanks-button-secondary:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}

.thanks-additional {
  padding: 100px 20px;
  background: #f9fafb;
}

.thanks-additional-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.thanks-additional-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: left;
}

.thanks-step {
  position: relative;
  padding-left: 80px;
}

.thanks-step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  background: #3b82f6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.thanks-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.thanks-step p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 768px) {
  .legal-hero-title,
  .thanks-title {
    font-size: 2.5rem;
  }

  .legal-hero-subtitle,
  .thanks-subtitle {
    font-size: 1.1rem;
  }

  .legal-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .legal-section-content {
    padding-left: 0;
  }

  .legal-list-item {
    flex-direction: column;
  }

  .legal-rights-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .thanks-info {
    grid-template-columns: 1fr;
  }

  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thanks-button {
    width: 100%;
    justify-content: center;
  }

  .thanks-step {
    padding-left: 0;
    padding-top: 80px;
    text-align: center;
  }

  .thanks-step-number {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*---------------------------------------
  COMPREHENSIVE RESPONSIVE IMPROVEMENTS              
-----------------------------------------*/

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
    padding: 0 3rem;
  }
}

/* Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .container {
    padding: 0 2rem;
  }
  
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .news-card.featured {
    grid-column: span 3;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .pricing-table {
    min-width: 900px;
  }
  
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .news-card.featured {
    grid-column: span 2;
  }
  
  .product-showcase,
.deep-focus-content {
    gap: 60px;
  }
  
  .episode-title {
    font-size: 2.8rem;
  }
  
  .about-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  .container {
    padding: 0 1.5rem;
  }
  
  main {
    margin-top: 80px;
  }
  
  article {
    padding-top: 40px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  /* Header */
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .navbar-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-top: 1px solid #e5e7eb;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .navbar-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .navbar-menu li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .navbar-menu li:last-child {
    border-bottom: none;
  }
  
  .navbar-menu a {
    display: block;
    padding: 16px 0;
    width: 100%;
  }
  
  /* Sections */
  .insights-blog,
.wachherz-news,
  .product-showcase,
.deep-focus,
  .analytics-features,
.revenue-model,
.wachherz-values,
  .analytics-pricing,
.wachherz-pricing,
  .get-started-banner,
.wachherz-cta-banner,
  .expert-team,
.wachherz-team {
    padding: 100px 20px;
  }
  
  .about-hero,
  .contact-hero,
  .faq-hero,
  .legal-hero {
    padding: 100px 20px 60px;
  }
  
  .news-title,
  .pricing-title,
  .cta-title {
    font-size: 2.5rem;
  }
  
  .episode-title {
    font-size: 2.2rem;
  }
  
  .product-showcase,
.deep-focus-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .product-showcase,
.deep-focus-right {
    order: -1;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-card.featured {
    grid-column: span 1;
  }
  
  .analytics-features,
.revenue-model,
.wachherz-values-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-mission-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-main {
    padding: 80px 15px;
    width: 100%;
    overflow-x: hidden;
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-form {
    padding: 30px 20px;
    width: 100%;
    max-width: 100%;
  }
  
  .contact-form-header {
    margin-bottom: 30px;
  }
  
  .contact-form-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-group {
    margin-bottom: 20px;
    width: 100%;
  }
  
  .contact-form-group input,
  .contact-form-group textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .contact-form-submit {
    padding: 14px;
    font-size: 1rem;
    width: 100%;
  }
  
  .contact-info-wrapper {
    width: 100%;
    max-width: 100%;
  }
  
  .contact-info-header {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .contact-info-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-info-cards {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }
  
  .contact-info-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
  }
  
  .pricing-table-wrapper {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 14px 10px;
  }
  
  .course-features {
    font-size: 0.85rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .episode-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .episode-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .play-button {
    width: 100%;
    justify-content: center;
  }
  
  .faq-categories-list {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .faq-category-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .legal-content {
    padding: 40px 20px;
  }
  
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  main {
    margin-top: 70px;
  }
  
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  /* Header */
  .main-header {
    padding: 12px 0;
  }
  
  .navbar {
    padding: 0 1rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .brand-icon {
    font-size: 1.5rem;
  }
  
  /* Sections */
  .insights-blog,
.wachherz-news,
  .product-showcase,
.deep-focus,
  .analytics-features,
.revenue-model,
.wachherz-values,
  .analytics-pricing,
.wachherz-pricing,
  .get-started-banner,
.wachherz-cta-banner,
  .expert-team,
.wachherz-team {
    padding: 80px 15px;
  }
  
  .about-hero,
  .contact-hero,
  .faq-hero,
  .legal-hero {
    padding: 80px 15px 50px;
  }
  
  .news-intro,
  .pricing-header {
    margin-bottom: 40px;
  }
  
  .news-title,
  .pricing-title,
  .cta-title,
  .episode-title {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .news-subtitle,
  .pricing-subtitle,
  .cta-description {
    font-size: 1rem;
  }
  
  .news-card-image,
  .news-card.featured .news-card-image {
    height: 200px;
  }
  
  .news-card-content {
    padding: 20px;
  }
  
  .news-card-title {
    font-size: 1.3rem;
  }
  
  .news-card-excerpt {
    font-size: 0.95rem;
  }
  
  .episode-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .stat-item {
    width: 100%;
  }
  
  .episode-tags {
    flex-wrap: wrap;
  }
  
  .contact-form {
    padding: 24px 16px;
  }
  
  .contact-form-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-group {
    margin-bottom: 20px;
  }
  
  .contact-form-group input,
  .contact-form-group textarea {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
  
  .contact-form-submit {
    padding: 14px;
    font-size: 1rem;
  }
  
  .pricing-table {
    min-width: 800px;
    font-size: 0.8rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
  
  .price {
    font-size: 1.3rem;
  }
  
  .course-features {
    font-size: 0.8rem;
  }
  
  .course-features li {
    margin-bottom: 6px;
  }
  
  .pricing-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  
  .cta-banner-content {
    padding: 40px 20px;
  }
  
  .cta-note {
    font-size: 0.9rem;
  }
  
  .about-section-title {
    font-size: 1.8rem;
  }
  
  .about-mission-card,
  .about-team-card {
    padding: 24px;
  }
  
  .contact-info-card {
    padding: 24px;
  }
  
  .faq-item-header h3 {
    font-size: 1.1rem;
    padding-right: 40px;
  }
  
  .faq-item-content {
    font-size: 0.95rem;
  }
  
  .legal-hero-title {
    font-size: 2.5rem;
  }
  
  .legal-section h2 {
    font-size: 1.8rem;
  }
  
  .legal-section h3 {
    font-size: 1.4rem;
  }
  
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-text {
    text-align: center;
  }
  
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-banner-btn {
    width: 100%;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  /* Header */
  .navbar {
    padding: 0 0.75rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .brand-icon {
    font-size: 1.3rem;
  }
  
  /* Sections */
  .insights-blog,
.wachherz-news,
  .product-showcase,
.deep-focus,
  .analytics-features,
.revenue-model,
.wachherz-values,
  .analytics-pricing,
.wachherz-pricing,
  .get-started-banner,
.wachherz-cta-banner,
  .expert-team,
.wachherz-team {
    padding: 60px 10px;
  }
  
  .about-hero,
  .contact-hero,
  .faq-hero,
  .legal-hero {
    padding: 60px 10px 40px;
  }
  
  .news-title,
  .pricing-title,
  .cta-title,
  .episode-title {
    font-size: 1.75rem;
  }
  
  .news-subtitle,
  .pricing-subtitle {
    font-size: 0.95rem;
  }
  
  .news-card-image {
    height: 180px;
  }
  
  .news-card-content {
    padding: 16px;
  }
  
  .news-card-title {
    font-size: 1.2rem;
  }
  
  .news-meta {
    font-size: 0.85rem;
  }
  
  .episode-badges {
    flex-wrap: wrap;
  }
  
  .episode-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  
  .contact-form {
    padding: 20px 12px;
  }
  
  .contact-form-header h2 {
    font-size: 1.6rem;
  }
  
  .contact-form-header p {
    font-size: 0.95rem;
  }
  
  .contact-form-group input,
  .contact-form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .contact-form-submit {
    padding: 12px;
    font-size: 0.95rem;
  }
  
  .pricing-table {
    min-width: 700px;
    font-size: 0.75rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 10px 6px;
  }
  
  .price {
    font-size: 1.2rem;
  }
  
  .course-desc {
    font-size: 0.75rem;
  }
  
  .course-features {
    font-size: 0.75rem;
  }
  
  .pricing-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .cta-banner-content {
    padding: 30px 16px;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .cta-description {
    font-size: 0.95rem;
  }
  
  .cta-note {
    font-size: 0.85rem;
  }
  
  .about-section-title {
    font-size: 1.6rem;
  }
  
  .about-mission-card,
  .about-team-card {
    padding: 20px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .faq-item-header h3 {
    font-size: 1rem;
    padding-right: 35px;
  }
  
  .faq-item-toggle {
    width: 32px;
    height: 32px;
  }
  
  .legal-hero-title {
    font-size: 2rem;
  }
  
  .legal-section h2 {
    font-size: 1.6rem;
  }
  
  .legal-section h3 {
    font-size: 1.3rem;
  }
  
  .legal-content {
    padding: 30px 15px;
  }
  
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-content {
    padding: 30px 20px;
  }
  
  .footer-container {
    padding: 40px 15px 20px;
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
  
  .footer-title {
    font-size: 1.2rem;
  }
  
  .cookie-banner {
    padding: 16px 12px;
  }
  
  .cookie-banner-icon {
    width: 40px;
    height: 40px;
  }
  
  .cookie-banner-text h3 {
    font-size: 1.1rem;
  }
  
  .cookie-banner-text p {
    font-size: 0.9rem;
  }
  
  .cookie-banner-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .container {
    padding: 0 0.5rem;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .news-title,
  .pricing-title,
  .cta-title,
  .episode-title {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 16px 10px;
  }
  
  .pricing-table {
    min-width: 650px;
    font-size: 0.7rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 8px 4px;
  }
  
  .cta-banner-content {
    padding: 24px 12px;
  }
  
  /* About page - extra small */
  .about-hero-title,
  .about-section-title {
    font-size: 1.5rem;
  }
  
  .about-cta-content h2 {
    font-size: 1.5rem;
  }
  
  .about-story-quote {
    padding: 16px;
  }
  
  /* Contact page - extra small */
  .contact-hero-title {
    font-size: 1.5rem;
  }
  
  .contact-faq-preview-content h2 {
    font-size: 1.5rem;
  }
  
  /* FAQ page - extra small */
  .faq-hero-title {
    font-size: 1.5rem;
  }
  
  .faq-cta-content h2 {
    font-size: 1.5rem;
  }
  
  /* Legal pages - extra small */
  .legal-hero-title {
    font-size: 1.75rem;
  }
  
  .legal-section-header h2 {
    font-size: 1.3rem;
  }
  
  /* Thanks page - extra small */
  .thanks-title {
    font-size: 1.75rem;
  }
  
  .thanks-additional-content h2 {
    font-size: 1.5rem;
  }
}

/* Additional responsive improvements for all pages */
@media (max-width: 991px) {
  /* Ensure all hero sections are properly spaced */
  .about-hero,
  .contact-hero,
  .faq-hero,
  .legal-hero {
    padding-top: 100px;
  }
  
  /* Improve grid layouts */
  .about-mission-grid,
  .about-team-grid {
    gap: 30px;
  }
  
  .contact-info-cards {
    gap: 24px;
  }
  
  /* Better spacing for FAQ */
  .faq-item {
    margin-bottom: 20px;
  }
  
  /* Legal pages improvements */
  .legal-section {
    margin-bottom: 40px;
  }
  
  .legal-section-content {
    padding-left: 20px;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .about-hero,
  .contact-hero,
  .faq-hero,
  .legal-hero {
    padding: 60px 20px 40px;
  }
  
  .navbar-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}

/* Print Styles */
@media print {
  .main-header,
  .main-footer,
  .cookie-banner,
  .mobile-menu-toggle {
    display: none;
  }
  
  main {
    margin-top: 0;
  }
  
  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }
  
  /* Ensure images are responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Improve touch targets */
  button,
  a.btn-primary,
  .contact-form-submit,
  .pricing-btn,
  .cta-btn-primary,
  .cta-btn-secondary {
    min-height: 44px;
  }
  
  /* Better spacing for mobile */
  .news-card,
  .about-mission-card,
  .about-team-card,
  .contact-info-card {
    margin-bottom: 24px;
  }
  
  /* Improve form usability on mobile */
  .contact-form-group input,
  .contact-form-group textarea,
  .contact-form-group select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  /* Better button spacing */
  .episode-actions,
  .cta-buttons,
  .faq-cta-buttons {
    gap: 12px;
  }
  
  /* Improve table scrolling on mobile */
  .pricing-table-wrapper {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Better text readability */
  p, li {
    line-height: 1.7;
  }
  
  /* Improve card readability */
  .news-card-content,
  .about-mission-card,
  .about-team-card-content {
    padding: 20px;
  }
  
  /* Better navigation on mobile */
  .navbar-menu {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  
  /* Improve dropdown on mobile */
  .has-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    background: #f3f4f6;
    margin-top: 0;
    padding-left: 20px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .navbar-menu a,
  .footer-links a,
  .faq-category-btn {
    padding: 16px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  /* Remove hover effects on touch devices */
  .news-card:hover,
  .about-mission-card:hover,
  .about-team-card:hover {
    transform: none;
  }
  
  /* Better button feedback */
  button:active,
  a:active {
    opacity: 0.8;
    transform: scale(0.98);
  }
  
  /* Improve tap highlight */
  a, button {
    -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .news-card-image img,
  .about-team-card-image img,
  .episode-artwork img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


