@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

.strip.is-sticky {
    position: sticky;
    top: var(--proweb-sticky-offset, 0px);
    z-index: calc(900 - var(--proweb-sticky-index, 0));
}
.strip.underlay-sticky {
    margin-top: calc(-1 * var(--sticky-header-height, 0px)) !important;
}

.strip.underlay-sticky > :first-child {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* Admin Editor: bypass injected overlay layers and style the actual user section content. */
.strip.underlay-sticky > .pa-iframe-controls,
.strip.underlay-sticky > .pa-iframe-frame,
.strip.underlay-sticky > .pa-iframe-veil {
    border-top: none !important;
    background-origin: padding-box !important;
    background-clip: border-box !important;
}

.strip.underlay-sticky > .pa-iframe-controls + .pa-iframe-frame + .pa-iframe-veil + * {
    border-top: var(--sticky-header-height, 0px) solid transparent !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
}

/* Administration Editor: keep the divider visible without letting it offset the underlay strip. */
.pa-iframe-divider:has(+ .strip.underlay-sticky):not(.pa-iframe-expanded) {
    height: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    overflow: visible !important;
    z-index: 1000;
}.strip[data-id=c71c88] {
  --section-id: "c71c88";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/c71c88";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/c71c88";
  /* Mobile Toggle */
  /* Responsive Logic */
}
.strip[data-id=c71c88] .header-section {
  width: 100%;
  background-color: hsla(0, 0%, 100%, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}
.strip[data-id=c71c88] .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.strip[data-id=c71c88] .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.strip[data-id=c71c88] .logo-link:hover {
  opacity: 0.9;
}
.strip[data-id=c71c88] .logo-img {
  max-height: 45px;
  width: auto;
  display: block;
  /* Blend logo with white background if it has a solid white box */
  mix-blend-mode: multiply;
}
.strip[data-id=c71c88] .nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}
.strip[data-id=c71c88] .nav-item a {
  text-decoration: none;
  color: hsl(192, 5%, 20%);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.strip[data-id=c71c88] .nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: hsl(88, 61%, 45%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}
.strip[data-id=c71c88] .nav-item a:hover {
  color: hsl(88, 61%, 35%);
}
.strip[data-id=c71c88] .nav-item a:hover::after {
  width: 100%;
}
.strip[data-id=c71c88] .phone-wrapper {
  display: flex;
  align-items: center;
}
.strip[data-id=c71c88] .phone-link {
  text-decoration: none;
  color: hsl(201, 100%, 28%);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid hsl(201, 100%, 28%);
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
}
.strip[data-id=c71c88] .phone-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.strip[data-id=c71c88] .phone-link:hover {
  background-color: hsl(201, 100%, 28%);
  color: white;
  box-shadow: 0 4px 15px hsla(201, 100%, 28%, 0.3);
}
.strip[data-id=c71c88] .mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: hsla(192, 5%, 20%, 0.05);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  z-index: 1001;
  transition: background 0.3s ease;
}
.strip[data-id=c71c88] .mobile-toggle:hover {
  background: hsla(192, 5%, 20%, 0.1);
}
.strip[data-id=c71c88] .mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: hsl(192, 5%, 20%);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .strip[data-id=c71c88] .header-container {
    padding: 10px 15px;
  }
  .strip[data-id=c71c88] .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: hsla(0, 0%, 100%, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  .strip[data-id=c71c88] .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .strip[data-id=c71c88] .nav-item:last-child {
    border-bottom: none;
  }
  .strip[data-id=c71c88] .nav-item a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
  }
  .strip[data-id=c71c88] .nav-item a::after {
    display: none;
  }
  .strip[data-id=c71c88] .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }
  .strip[data-id=c71c88] .mobile-toggle {
    display: flex;
  }
  .strip[data-id=c71c88] .phone-wrapper {
    display: none;
  }
  .strip[data-id=c71c88] .mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .strip[data-id=c71c88] .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .strip[data-id=c71c88] .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.strip[data-id="2d09ec"] {
  --section-id: "2d09ec";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/2d09ec";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/2d09ec";
}
.strip[data-id="2d09ec"] .hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.85) 40%, rgba(255, 255, 255, 0) 100%), url(https://preview-studiokm-cz-20260723.proweb.cz/_section/2d09ec/hero-bg.jpg) center/cover no-repeat;
}
.strip[data-id="2d09ec"] .hero-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}
.strip[data-id="2d09ec"] .hero-section .content-wrapper {
  max-width: 650px;
  padding: 60px;
  position: relative;
  background-image: radial-gradient(hsl(201, 100%, 28%) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  border-radius: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}
.strip[data-id="2d09ec"] .hero-section .content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-radius: inherit;
  z-index: -1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.strip[data-id="2d09ec"] .hero-section .hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  color: hsl(201, 100%, 28%);
  line-height: 1.1;
  margin: 0 0 24px 0;
}
.strip[data-id="2d09ec"] .hero-section .hero-title span {
  display: block;
  color: hsl(88, 61%, 45%);
  font-size: 0.8em;
  margin-top: 10px;
}
.strip[data-id="2d09ec"] .hero-section .hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  color: hsl(192, 5%, 25%);
  line-height: 1.7;
  margin: 0 0 40px 0;
}
.strip[data-id="2d09ec"] .hero-section .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background-color: hsl(88, 61%, 45%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(139, 195, 74, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.strip[data-id="2d09ec"] .hero-section .cta-button i {
  transition: transform 0.3s ease;
}
.strip[data-id="2d09ec"] .hero-section .cta-button:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: hsl(88, 61%, 38%);
  box-shadow: 0 15px 30px rgba(139, 195, 74, 0.4);
}
.strip[data-id="2d09ec"] .hero-section .cta-button:hover i {
  transform: translateX(5px);
}
.strip[data-id="2d09ec"] .hero-section .decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.strip[data-id="2d09ec"] .hero-section .wave {
  position: absolute;
  background-color: hsl(45, 100%, 60%);
  opacity: 0.08;
  border-radius: 43% 57% 70% 30%/30% 40% 60% 70%;
  animation: wave-float 25s infinite alternate ease-in-out;
}
.strip[data-id="2d09ec"] .hero-section .wave--1 {
  bottom: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
}
.strip[data-id="2d09ec"] .hero-section .wave--2 {
  top: -5%;
  right: 15%;
  width: 300px;
  height: 300px;
  background-color: hsl(201, 100%, 28%);
  animation-duration: 30s;
  animation-delay: -5s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes wave-float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  33% {
    transform: translate(30px, -20px) rotate(5deg) scale(1.05);
  }
  66% {
    transform: translate(-20px, 40px) rotate(-3deg) scale(0.95);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}
@media (max-width: 992px) {
  .strip[data-id="2d09ec"] .hero-section {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%), url(https://preview-studiokm-cz-20260723.proweb.cz/_section/2d09ec/hero-bg.jpg) center/cover no-repeat;
  }
  .strip[data-id="2d09ec"] .hero-section .content-wrapper {
    max-width: 100%;
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    box-shadow: none;
  }
  .strip[data-id="2d09ec"] .hero-section .content-wrapper::before {
    display: none;
  }
  .strip[data-id="2d09ec"] .hero-section .wave--2 {
    display: none;
  }
}
@media (max-width: 576px) {
  .strip[data-id="2d09ec"] .hero-section .content-wrapper {
    padding: 20px 10px;
  }
  .strip[data-id="2d09ec"] .hero-section .cta-button {
    width: 100%;
    justify-content: center;
  }
}.strip[data-id="0e6241"] {
  --section-id: "0e6241";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/0e6241";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/0e6241";
}
.strip[data-id="0e6241"] .about-us-section {
  background-color: hsl(210, 20%, 99%);
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id="0e6241"] .about-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.strip[data-id="0e6241"] .about-us-section .layout-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.strip[data-id="0e6241"] .about-us-section .text-content {
  flex: 1.5;
}
.strip[data-id="0e6241"] .about-us-section .text-content .title {
  font-size: 36px;
  font-weight: 700;
  color: hsl(201, 100%, 28%);
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.2;
}
.strip[data-id="0e6241"] .about-us-section .text-content .title-divider {
  width: 60px;
  height: 4px;
  background-color: hsl(75, 100%, 40%);
  margin-bottom: 30px;
  border-radius: 2px;
}
.strip[data-id="0e6241"] .about-us-section .text-content .description {
  font-size: 18px;
  line-height: 1.8;
  color: hsl(210, 10%, 23%);
  margin: 0;
}
.strip[data-id="0e6241"] .about-us-section .features-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 40px;
  border-left: 2px solid hsla(210, 10%, 23%, 0.1);
}
.strip[data-id="0e6241"] .about-us-section .feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.strip[data-id="0e6241"] .about-us-section .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: hsl(45, 100%, 92%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 4px 10px hsla(45, 100%, 50%, 0.1);
}
.strip[data-id="0e6241"] .about-us-section .icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.strip[data-id="0e6241"] .about-us-section .feature-label {
  font-size: 16px;
  font-weight: 700;
  color: hsl(201, 100%, 20%);
  line-height: 1.4;
}
@media (max-width: 992px) {
  .strip[data-id="0e6241"] .about-us-section {
    padding: 60px 20px;
  }
  .strip[data-id="0e6241"] .about-us-section .layout-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .strip[data-id="0e6241"] .about-us-section .features-grid {
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  .strip[data-id="0e6241"] .about-us-section .feature-item {
    flex-direction: column;
    text-align: center;
    flex: 1;
  }
  .strip[data-id="0e6241"] .about-us-section .text-content {
    text-align: center;
  }
  .strip[data-id="0e6241"] .about-us-section .text-content .title-divider {
    margin: 0 auto 30px;
  }
}
@media (max-width: 600px) {
  .strip[data-id="0e6241"] .about-us-section .features-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .strip[data-id="0e6241"] .about-us-section .feature-item {
    flex-direction: row;
    text-align: left;
  }
  .strip[data-id="0e6241"] .about-us-section .title {
    font-size: 28px;
  }
}.strip[data-id="18ad42"] {
  --section-id: "18ad42";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/18ad42";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/18ad42";
}
.strip[data-id="18ad42"] .services-section {
  background-color: hsl(201, 30%, 98%);
  background-image: radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.02) 1px, transparent 0);
  background-size: 40px 40px;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}
.strip[data-id="18ad42"] .services-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(88, 61%, 45%, 0.05) 0%, transparent 70%);
  z-index: 0;
}
.strip[data-id="18ad42"] .services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id="18ad42"] .services-section .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id="18ad42"] .services-section .section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: hsl(201, 100%, 28%);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.strip[data-id="18ad42"] .services-section .section-header p {
  font-size: 18px;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}
.strip[data-id="18ad42"] .services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.strip[data-id="18ad42"] .services-section .service-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.strip[data-id="18ad42"] .services-section .service-card:hover {
  transform: translateY(-10px);
  border-color: hsl(88, 61%, 45%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.strip[data-id="18ad42"] .services-section .service-card:hover .icon-wrapper {
  background-color: hsl(88, 61%, 45%);
  color: white;
  transform: scale(1.05);
}
.strip[data-id="18ad42"] .services-section .service-card .icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: hsla(201, 100%, 28%, 0.05);
  color: hsl(201, 100%, 28%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}
.strip[data-id="18ad42"] .services-section .service-card .icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.strip[data-id="18ad42"] .services-section .service-card .card-title {
  font-size: 22px;
  font-weight: 700;
  color: hsl(201, 100%, 28%);
  margin-bottom: 15px;
  line-height: 1.3;
}
.strip[data-id="18ad42"] .services-section .service-card .card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
  flex-grow: 1;
}
.strip[data-id="18ad42"] .services-section .service-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 25px;
  border-top: 1px solid #f5f5f5;
}
.strip[data-id="18ad42"] .services-section .service-card .card-footer .price-box {
  display: flex;
  flex-direction: column;
}
.strip[data-id="18ad42"] .services-section .service-card .card-footer .price-box .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #aaa;
  margin-bottom: 4px;
  font-weight: 600;
}
.strip[data-id="18ad42"] .services-section .service-card .card-footer .price-box .price {
  font-weight: 800;
  color: hsl(201, 100%, 28%);
  font-size: 20px;
}
.strip[data-id="18ad42"] .services-section .service-card .card-footer .duration {
  font-size: 13px;
  color: #888;
  background: #f8f9fa;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.strip[data-id="18ad42"] .services-section .cta-container {
  text-align: center;
  margin-top: 60px;
}
.strip[data-id="18ad42"] .services-section .cta-container .btn-primary {
  display: inline-block;
  padding: 18px 44px;
  background-color: hsl(201, 100%, 28%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px hsla(201, 100%, 28%, 0.2);
}
.strip[data-id="18ad42"] .services-section .cta-container .btn-primary:hover {
  background-color: hsl(88, 61%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px hsla(88, 61%, 45%, 0.3);
}
@media (max-width: 1100px) {
  .strip[data-id="18ad42"] .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .strip[data-id="18ad42"] .services-section {
    padding: 70px 0;
  }
  .strip[data-id="18ad42"] .services-section .section-header {
    margin-bottom: 50px;
  }
  .strip[data-id="18ad42"] .services-section .section-header h2 {
    font-size: 32px;
  }
  .strip[data-id="18ad42"] .services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 500px;
    margin: 0 auto;
  }
  .strip[data-id="18ad42"] .services-section .service-card {
    padding: 35px;
  }
}.strip[data-id=efb242] {
  --section-id: "efb242";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/efb242";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/efb242";
}
.strip[data-id=efb242] .team-section {
  background-color: #ffffff;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  color: #333333;
  position: relative;
  overflow: hidden;
}
.strip[data-id=efb242] .team-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(50, 205, 50, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
}
.strip[data-id=efb242] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.strip[data-id=efb242] .section-header {
  text-align: center;
  margin-bottom: 70px;
}
.strip[data-id=efb242] .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #003366;
  margin: 0;
  line-height: 1.2;
}
.strip[data-id=efb242] .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.strip[data-id=efb242] .member-card {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #ffffff;
  padding: 25px;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 51, 102, 0.05);
}
.strip[data-id=efb242] .member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
}
.strip[data-id=efb242] .image-wrapper {
  flex-shrink: 0;
  width: 180px;
}
.strip[data-id=efb242] .image-wrapper img,
.strip[data-id=efb242] .image-wrapper generated-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;
}
.strip[data-id=efb242] .info-wrapper {
  flex-grow: 1;
}
.strip[data-id=efb242] .member-name {
  font-size: 22px;
  font-weight: 700;
  color: #003366;
  margin: 0 0 15px 0;
  position: relative;
  display: inline-block;
  line-height: 1.3;
  z-index: 1;
}
.strip[data-id=efb242] .underline-accent {
  position: absolute;
  bottom: 2px;
  left: -5px;
  width: calc(100% + 10px);
  height: 10px;
  background-color: #ffea00;
  z-index: -1;
  opacity: 0.6;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%; /* Organic brush-like shape */
  transform: rotate(-1deg);
}
.strip[data-id=efb242] .member-desc p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin: 0 0 20px 0;
}
.strip[data-id=efb242] .member-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.strip[data-id=efb242] .contact-link {
  color: #2e7d32; /* Darker green for better contrast and readability */
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id=efb242] .contact-link i {
  color: #32cd32; /* Keep the lime green for the icons as accent */
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.strip[data-id=efb242] .contact-link:hover {
  color: #1b5e20;
  transform: translateX(3px);
}
@media (max-width: 1100px) {
  .strip[data-id=efb242] .team-grid {
    gap: 30px;
  }
  .strip[data-id=efb242] .member-card {
    padding: 20px;
    gap: 20px;
  }
  .strip[data-id=efb242] .image-wrapper {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .strip[data-id=efb242] .team-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .strip[data-id=efb242] .team-section {
    padding: 60px 0;
  }
  .strip[data-id=efb242] .member-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }
  .strip[data-id=efb242] .image-wrapper {
    width: 200px;
    margin-bottom: 15px;
  }
  .strip[data-id=efb242] .member-name {
    display: block;
    width: fit-content;
    margin: 0 auto 15px auto;
  }
  .strip[data-id=efb242] .member-contacts {
    align-items: center;
  }
  .strip[data-id=efb242] .contact-link {
    justify-content: center;
  }
}.strip[data-id="5b9afc"] {
  --section-id: "5b9afc";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/5b9afc";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/5b9afc";
}
.strip[data-id="5b9afc"] .contact-section {
  background-color: hsl(0, 0%, 97%);
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id="5b9afc"] .contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.strip[data-id="5b9afc"] .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}
.strip[data-id="5b9afc"] .contact-content {
  flex: 1 1 400px;
}
.strip[data-id="5b9afc"] .contact-map-wrapper {
  flex: 1 1 500px;
}
.strip[data-id="5b9afc"] h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #003366;
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 1.2;
}
.strip[data-id="5b9afc"] .info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.strip[data-id="5b9afc"] .info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.strip[data-id="5b9afc"] .info-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #32CD32;
  margin-top: 4px;
}
.strip[data-id="5b9afc"] .info-text {
  font-weight: 400;
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  margin: 0;
}
.strip[data-id="5b9afc"] .info-text strong {
  display: block;
  font-weight: 700;
  color: #003366;
  margin-bottom: 5px;
}
.strip[data-id="5b9afc"] .map-container {
  position: relative;
  width: 100%;
  padding-bottom: 65%; /* Aspect ratio 16:10 approx */
  height: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background-color: #eee;
}
.strip[data-id="5b9afc"] .map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1);
}
@media (max-width: 992px) {
  .strip[data-id="5b9afc"] .contact-grid {
    gap: 40px;
  }
  .strip[data-id="5b9afc"] .contact-content,
  .strip[data-id="5b9afc"] .contact-map-wrapper {
    flex: 1 1 100%;
  }
  .strip[data-id="5b9afc"] .contact-section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .strip[data-id="5b9afc"] h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .strip[data-id="5b9afc"] .info-text {
    font-size: 16px;
  }
  .strip[data-id="5b9afc"] .map-container {
    padding-bottom: 75%;
  }
}@charset "UTF-8";
.strip[data-id=cd36e6] {
  --section-id: "cd36e6";
  --storage-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/cd36e6";
  --public-url: "https://preview-studiokm-cz-20260723.proweb.cz/_section/cd36e6";
}
.strip[data-id=cd36e6] .global-footer {
  background-color: hsl(201, 100%, 15%);
  padding: 80px 0 40px;
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 15px;
  line-height: 1.7;
  font-family: "Montserrat", sans-serif;
}
.strip[data-id=cd36e6] .global-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}
.strip[data-id=cd36e6] .global-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.strip[data-id=cd36e6] .global-footer .footer-title {
  color: hsl(45, 100%, 60%);
  font-weight: 700;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip[data-id=cd36e6] .global-footer .footer-title i {
  font-size: 20px;
  opacity: 0.9;
}
.strip[data-id=cd36e6] .global-footer .footer-content p {
  margin-top: 0;
  margin-bottom: 20px;
}
.strip[data-id=cd36e6] .global-footer .footer-content a {
  color: hsla(0, 0%, 100%, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.strip[data-id=cd36e6] .global-footer .footer-content a i {
  color: hsl(45, 100%, 60%);
  font-size: 14px;
}
.strip[data-id=cd36e6] .global-footer .footer-content a:hover {
  color: hsl(80, 100%, 50%);
  transform: translateX(5px);
}
.strip[data-id=cd36e6] .global-footer .footer-content a:hover i {
  color: hsl(80, 100%, 50%);
}
.strip[data-id=cd36e6] .global-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.strip[data-id=cd36e6] .global-footer .footer-links li {
  margin-bottom: 15px;
}
.strip[data-id=cd36e6] .global-footer .footer-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: hsla(0, 0%, 100%, 0.8);
}
.strip[data-id=cd36e6] .global-footer .footer-links li a::before {
  content: "→";
  font-size: 12px;
  color: hsl(45, 100%, 60%);
  transition: transform 0.3s ease;
}
.strip[data-id=cd36e6] .global-footer .footer-links li a:hover {
  color: hsl(80, 100%, 50%);
}
.strip[data-id=cd36e6] .global-footer .footer-links li a:hover::before {
  transform: translateX(3px);
  color: hsl(80, 100%, 50%);
}
.strip[data-id=cd36e6] .global-footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.strip[data-id=cd36e6] .global-footer .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid hsla(0, 0%, 100%, 0.1);
}
.strip[data-id=cd36e6] .global-footer .social-links .social-link:hover {
  background: hsl(80, 100%, 50%);
  color: hsl(201, 100%, 15%);
  transform: translateY(-3px);
  border-color: hsl(80, 100%, 50%);
}
.strip[data-id=cd36e6] .global-footer .footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 40px;
  text-align: center;
}
.strip[data-id=cd36e6] .global-footer .copyright {
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.5);
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .strip[data-id=cd36e6] .global-footer .footer-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .strip[data-id=cd36e6] .global-footer {
    padding: 60px 0 30px;
  }
  .strip[data-id=cd36e6] .global-footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .strip[data-id=cd36e6] .global-footer .footer-title {
    justify-content: center;
  }
  .strip[data-id=cd36e6] .global-footer .footer-content a, .strip[data-id=cd36e6] .global-footer .footer-links li a {
    justify-content: center;
  }
  .strip[data-id=cd36e6] .global-footer .footer-content a:hover, .strip[data-id=cd36e6] .global-footer .footer-links li a:hover {
    transform: none;
  }
  .strip[data-id=cd36e6] .global-footer .social-links {
    justify-content: center;
  }
  .strip[data-id=cd36e6] .global-footer .footer-bottom {
    margin-top: 30px;
  }
}