body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    background-color: var(--light-bg);
    color: var(--dark-text);
    overflow-x: hidden;
    padding-top: 60px;
  }
  
  :root {
    --main-blue-dark: #00416a;
    --main-blue: #1976d2;
    --main-blue-light: #5fa8e6;
    --main-green: #2e7d32;
    --main-red: #c62828;
    --light-bg: #f5f7fa;
    --section-bg: #fff;
    --dark-text: #23272f;
    --shadow: 0 8px 32px rgba(30,60,60,0.10);
  }
  
  header {
    background-color: #00416a;
    color: white;
    padding: 2rem;
    text-align: center;
  }
  
  main {
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  section {
    margin-bottom: 2rem;
  }
  
  section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
    border-radius: 8px;
  }
  
  footer {
    background: linear-gradient(90deg, var(--main-blue-dark) 60%, var(--main-blue) 100%);
    color: #fff;
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--main-blue-light);
  }
  
  .footer-contact p,
  .footer-hours p {
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }
  
  .footer-icon {
    font-size: 1.2rem;
  }
  
  .footer-day {
    font-weight: 600;
    min-width: 120px;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.9;
  }
  
  .footer-links a:hover {
    color: var(--main-blue-light);
    opacity: 1;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  @media (max-width: 768px) {
    .header-content h1 {
      font-size: 2.5rem;
    }
    
    .header-content p {
      font-size: 1.1rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  /* Flexbox pro služby */
  .services-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .services-flex section {
    flex: 1 1 300px;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1.5rem;
  }
  
  @media (max-width: 900px) {
    .services-flex {
      flex-direction: column;
      gap: 1.5rem;
    }
  }
  
  /* Header vylepšení */
  .header-enhanced {
    background: linear-gradient(rgba(0, 65, 106, 0.9), rgba(0, 65, 106, 0.9)), url('img/firma-optimized.jpg') center/cover;
    box-shadow: var(--shadow);
    padding: 4rem 0;
    color: #fff;
  }
  .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .header-firma-img {
    display: none;
  }
  .header-content h1 {
    font-size: 3rem;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  .header-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
  }
  .header-content .cta-btn {
    margin-top: 1.5rem;
  }
  @media (max-width: 700px) {
    .header-content {
      flex-direction: column;
      gap: 1.2rem;
    }
    .header-firma-img {
      width: 90px;
      height: 90px;
    }
  }
  
  /* Moderní roztažené sekce */
  .section-wide {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(90deg, #eaf3fb 0%, #f5f7fa 100%);
    box-shadow: var(--shadow);
    padding: 4rem 0;
    margin-bottom: 2.5rem;
  }
  
  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .section-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .section-flex.reverse {
    flex-direction: row-reverse;
  }
  
  .section-img {
    width: 400px;
    height: 280px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(30,60,60,0.10);
    background: #fff;
    border: 4px solid var(--main-blue);
    flex: 0 0 400px;
  }
  
  .section-content {
    flex: 1 1 400px;
    min-width: 300px;
    max-width: 600px;
  }
  
  .section-content h2 {
    color: var(--dark-text);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
  }
  
  .section-content p {
    font-size: 1.18rem;
    color: var(--dark-text);
    opacity: 0.95;
    line-height: 1.8;
  }
  
  @media (max-width: 900px) {
    .section-flex, .section-flex.reverse {
      flex-direction: column;
      gap: 2rem;
      align-items: stretch;
    }
    .section-img {
      width: 100%;
      height: 220px;
      flex: 0 0 auto;
    }
    .section-container,
    .services-main,
    .firma-info-container {
      padding: 0 1.5rem;
    }
  }

  .emise-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .emise-section-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
  }
  @media (max-width: 600px) {
    .emise-title {
      flex-direction: column;
      gap: 0.3rem;
    }
    .emise-section-icon {
      width: 40px;
      height: 40px;
    }
  }
  
  /* Firma info sekce */
  .firma-info {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    color: var(--dark-text);
    box-shadow: var(--shadow);
    padding: 4rem 0;
    margin-top: 2.5rem;
  }
  
  .firma-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .firma-info h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--dark-text);
    letter-spacing: 0.5px;
  }
  
  .firma-info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
  }
  
  .firma-info-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .firma-info-map {
    flex: 1 1 320px;
    min-width: 260px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .firma-img {
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(30,60,60,0.10);
    margin-bottom: 1rem;
  }
  .firma-info ul {
    margin: 0.5rem 0 1rem 1.2rem;
    color: var(--dark-text);
  }
  .firma-info a {
    color: var(--main-blue);
    text-decoration: underline;
  }
  @media (max-width: 900px) {
    .firma-info-columns {
      grid-template-columns: 1fr;
    }
    .firma-info-map {
      max-width: 100%;
    }
  }
  
  .map-embed {
    width: 100%;
    min-width: 220px;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30,60,60,0.07);
    background: #f5f7fa;
  }
  
  /* CTA tlačítko */
  .cta-btn {
    display: inline-block;
    background: var(--main-green);
    color: #fff;
    font-weight: bold;
    padding: 1.1rem 2.5rem;
    border-radius: 40px;
    font-size: 1.18rem;
    border: none;
    box-shadow: 0 2px 8px rgba(30,60,60,0.10);
    margin-top: 1.2rem;
    transition: background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
  }
  .cta-btn:hover {
    background: var(--main-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(30,60,60,0.18);
  }
  
  .services-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
  }
  .services-main h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--dark-text);
    letter-spacing: 0.5px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.2rem;
    margin-top: 2.5rem;
  }
  .service-box {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(30,60,60,0.10);
    padding: 2.2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(30,60,60,0.16);
  }
  .service-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    height: 2.5rem;
  }
  .service-ico img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  .service-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--main-blue);
    text-align: center;
  }
  .service-box p {
    font-size: 1.05rem;
    color: var(--dark-text);
    text-align: center;
    margin: 0;
  }
  .service-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background: var(--main-blue);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .service-link:hover {
    background: var(--main-blue-dark);
    transform: translateY(-2px);
  }
  @media (max-width: 600px) {
    .services-main {
      padding: 0 0.5rem;
    }
    .services-grid {
      grid-template-columns: 1fr;
    }
    .service-box {
      padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
  }
  
  .header-badge {
    background: var(--main-blue-light);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  
  .services-special {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  .special-badge {
    display: inline-block;
    background: var(--main-green);
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 16px;
    padding: 0.32em 1.1em;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 8px rgba(30,60,60,0.08);
  }
  
  .cta-btn-group {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  @media (max-width: 600px) {
    .cta-btn-group {
      flex-direction: column;
      gap: 0.7rem;
      align-items: center;
    }
  }
  
  /* Navigační menu */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 2px 12px rgba(30,60,60,0.08);
    z-index: 1000;
  }
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 0.7rem 2rem;
    position: relative;
  }
  .nav-link {
    color: var(--dark-text);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--main-blue);
    background-color: rgba(25, 118, 210, 0.1);
  }
  .nav-link.active {
    color: var(--main-blue);
    background-color: rgba(25, 118, 210, 0.1);
    font-weight: 600;
    position: relative;
  }
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background-color: var(--main-blue);
    border-radius: 2px;
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    margin-left: auto;
    cursor: pointer;
  }
  @media (max-width: 800px) {
    .nav-container {
      gap: 0.5rem;
      padding: 0.7rem 1rem;
    }
    .nav-link {
      font-size: 1rem;
      padding: 0.4rem 0.7rem;
    }
  }
  @media (max-width: 600px) {
    .nav-container {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0.5rem 0.7rem;
      position: relative;
    }
    .nav-toggle {
      display: block;
      align-self: flex-end;
      margin: 0.2rem 0 0.2rem auto;
      position: static;
      z-index: 2;
    }
    .nav-link {
      display: none;
      width: 100%;
      margin: 0.2rem 0;
      border-radius: 8px;
      padding: 0.7rem 1rem;
      font-size: 1.1rem;
      opacity: 0;
      transform: translateY(-10px);
      transition: opacity 0.3s, transform 0.3s;
    }
    .nav-link.mobile-visible {
      display: block;
      width: 100%;
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.3s, transform 0.3s;
    }
  }
  
  .nav-toggle-icon {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), color 0.2s;
  }
  .nav-toggle.open .nav-toggle-icon {
    transform: rotate(90deg) scale(1.2);
    color: var(--main-blue);
  }
  
  .mobile-call-bar {
    display: none;
  }
  @media (max-width: 700px) {
    .mobile-call-bar {
      display: flex;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100vw;
      background: #fff;
      box-shadow: 0 -2px 12px rgba(30,60,60,0.10);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 0.5rem 0;
    }
    .call-btn {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      background: var(--main-blue);
      color: #fff;
      font-weight: 700;
      font-size: 1.18rem;
      border-radius: 32px;
      padding: 0.7rem 2rem;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(25, 118, 210, 0.13);
      transition: background 0.2s, box-shadow 0.2s;
    }
    .call-btn:hover {
      background: var(--main-blue-dark);
      color: #fff;
      box-shadow: 0 4px 16px rgba(25, 118, 210, 0.18);
    }
    .call-icon {
      font-size: 1.5em;
      color: #5fa8e6;
      filter: drop-shadow(0 1px 2px rgba(25,118,210,0.12));
    }
  }
  
  .desktop-phone {
    text-align: center;
    font-size: 1.18rem;
    color: #fff;
    font-weight: 600;
    margin-top: 0.7rem;
    letter-spacing: 0.5px;
  }
  @media (max-width: 700px) {
    .desktop-phone {
      display: none;
    }
  }
  
  /* Footer styles */
  .site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-info h3,
  .footer-services h3,
  .footer-map h3 {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  .footer-contact p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-contact a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-contact a:hover {
    color: #f39c12;
  }
  
  .footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-services li {
    margin-bottom: 0.5rem;
  }
  
  .footer-services a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-services a:hover {
    color: #f39c12;
  }
  
  .map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    margin: 0.5rem 0;
  }
  
  @media (max-width: 768px) {
    .footer-columns {
      grid-template-columns: 1fr;
    }
    
    .footer-map {
      order: -1;
    }
  }
  
  .map-link {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .map-link:hover {
    color: #f39c12;
  }
  
  .table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 1rem;
  }
  
  .table th, .table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
  }
  
  .table thead tr {
    background: #f5f5f5;
  }
  
  .table tbody tr:nth-child(even) {
    background: #fafafa;
  }
  
  .emise-table-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--main-blue);
    margin-bottom: 20px;
    text-align: left;
  }
  
  .emise-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
    font-size: 1rem;
  }
  
  .emise-table th, .emise-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #e3e8ee;
    text-align: left;
  }
  
  .emise-table th {
    background: #e3e8ee;
    color: var(--main-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  .emise-table tbody tr:nth-child(even) {
    background: #f5faff;
  }
  
  .emise-table tbody tr:last-child td {
    border-bottom: none;
  }
  
  .time-banner {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1.2em;
    font-weight: bold;
  }

  /* Další služby sekce */
  .services-additional {
    max-width: 800px;
    margin: 0 auto;
  }

  .services-pricing {
    margin-top: 1.5rem;
  }

  #dalsi-sluzby {
    background: #fff;
  }

  /* Komplexní služba "na klíč" */
  .komplexni-sluzba {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.2);
    position: relative;
    overflow: hidden;
  }

  .komplexni-sluzba::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .komplexni-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .komplexni-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .komplexni-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .benefit {
    background: rgba(255,255,255,0.15);
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .benefit:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.25);
  }

  .komplexni-sluzba .cta-btn {
    background: white;
    color: var(--main-blue);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .komplexni-sluzba .cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  @media (max-width: 768px) {
    .services-additional {
      padding: 0 1rem;
    }
    
    .komplexni-sluzba {
      padding: 1.5rem;
      margin: 1.5rem 0;
    }
    
    .komplexni-header h3 {
      font-size: 1.5rem;
    }
    
    .komplexni-content p {
      font-size: 1.1rem;
    }
    
    .komplexni-benefits {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }
    
    .benefit {
      padding: 0.6rem 0.8rem;
      font-size: 0.95rem;
    }
    
    .emise-table th, .emise-table td {
      padding: 10px 12px;
      font-size: 0.9rem;
    }
  }

  /* Klimatizace tipy sekce */
  .klimatizace-tips {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e3e8ee;
  }

  .klimatizace-tips h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-blue);
    margin-bottom: 2rem;
  }

  .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .tip-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--main-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .tip-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.1);
  }

  .tip-box h4 {
    color: var(--main-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
  }

  .tip-box p {
    color: var(--dark-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .klimatizace-tips {
      margin-top: 2rem;
      padding-top: 1.5rem;
    }
    
    .tips-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .tip-box {
      padding: 1.2rem;
    }
  }

  /* Komplexní STK služba na stránce emisí */
  .komplexni-stk-sluzba {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-light) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    text-align: center;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.2);
    position: relative;
    overflow: hidden;
  }

  .komplexni-stk-sluzba::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .komplexni-stk-sluzba .komplexni-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .komplexni-stk-sluzba .komplexni-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .stk-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .stk-benefits .benefit {
    background: rgba(255,255,255,0.15);
    padding: 0.8rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .stk-benefits .benefit:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.25);
  }

  .stk-note {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid rgba(255,255,255,0.3);
  }

  .stk-note p {
    margin: 0;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.95;
  }

  .komplexni-stk-sluzba .cta-btn {
    background: white;
    color: var(--main-blue);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .komplexni-stk-sluzba .cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }

  @media (max-width: 768px) {
    .komplexni-stk-sluzba {
      padding: 1.5rem;
      margin: 1.5rem 0;
    }
    
    .komplexni-stk-sluzba .komplexni-header h3 {
      font-size: 1.5rem;
    }
    
    .komplexni-stk-sluzba .komplexni-content p {
      font-size: 1.1rem;
    }
    
    .stk-benefits {
      grid-template-columns: 1fr;
      gap: 0.8rem;
    }
    
    .stk-benefits .benefit {
      padding: 0.6rem 0.8rem;
      font-size: 0.9rem;
    }
    
    .stk-note {
      padding: 0.8rem;
    }
  }

  /* Vodíkový claim na stránce emisí */


  .claim-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .claim-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  }

  .claim-header strong {
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }

  

  @media (max-width: 768px) {

    

  }

/* CNG highlight na stránce emisí */
.cng-highlight {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  border-radius: 10px;
  padding: 1.2rem;
  margin: 1.2rem 0;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.cng-highlight h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
}

.cng-highlight p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.95;
}

.claim-header {
}