/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v3n6j1-wrapper-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - Fixed for PC */
.qx7z9m-primary-navigation-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #e30613;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.k8p2w5-customer-type-selector {
  background: #e30613;
  padding: 5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.r9t4x8-customer-navigation {
  display: flex;
  gap: 30px;
}

.m2q7s4-customer-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 0;
  position: relative;
}

.m2q7s4-customer-link:hover,
.m2q7s4-customer-link.active {
  opacity: 1;
}

.m2q7s4-customer-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
}

.m2q7s4-customer-link:not(.active) {
  opacity: 0.8;
}

.h5l9c3-main-header-wrapper {
  padding: 15px 0;
}

.d8f2k6-header-content-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.z1x4y7-brand-logo-container {
  grid-column: 1;
}

.p6w9e2-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.s-logo-symbol {
  background: white;
  color: #e30613;
  width: 45px;
  height: 45px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 26px;
  font-family: Arial, sans-serif;
}

.b4n8t5-brand-text {
  font-size: 34px;
  font-weight: bold;
  color: white;
  letter-spacing: -0.5px;
}

.a7c1f9-primary-menu-navigation {
  grid-column: 2;
  justify-self: center;
}

.u3i6o2-navigation-list {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.l5g8h4-nav-item {
  position: relative;
}

.n9m3q7-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 10px 0;
  display: block;
}

.n9m3q7-nav-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.n9m3q7-nav-link i {
  margin-left: 6px;
  font-size: 12px;
}

.x2v5b8-action-controls {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}

.j4k7n1-search-trigger {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 15px;
  transition: all 0.3s ease;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.j4k7n1-search-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.search-text {
  font-weight: 500;
}

.w6y9z3-login-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 15px;
}

.w6y9z3-login-button:hover {
  background: white;
  color: #e30613;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.e8r2t5-mobile-menu-toggle {
  grid-column: 4;
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  gap: 4px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.e8r2t5-mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.e8r2t5-mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.e8r2t5-mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.e8r2t5-mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #e30613;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 80px 20px 40px;
  height: 100%;
  overflow-y: auto;
  position: relative;
}

/* Close Button */
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-close:hover {
  background: white;
  color: #e30613;
  transform: rotate(90deg);
}

.mobile-navigation {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 40px;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  opacity: 0.8;
  padding-left: 15px;
}

.mobile-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-login-btn {
  background: white;
  color: #e30613;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mobile-search-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-search-btn:hover {
  background: white;
  color: #e30613;
}

/* Hero Slider Styles */
.f9g3h7-hero-carousel-container {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 130px;
  overflow: hidden;
}

/* Responsive Design - Updated */
@media (max-width: 1200px) {
  .u3i6o2-navigation-list {
    gap: 28px;
  }

  .n9m3q7-nav-link {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .u3i6o2-navigation-list {
    gap: 24px;
  }

  .n9m3q7-nav-link {
    font-size: 14px;
  }

  .x2v5b8-action-controls {
    gap: 15px;
  }
}

@media (max-width: 900px) {
  .d8f2k6-header-content-grid {
    grid-template-columns: auto 1fr auto;
    gap: 15px;
  }

  .a7c1f9-primary-menu-navigation {
    display: none;
  }

  .e8r2t5-mobile-menu-toggle {
    display: flex;
  }

  .search-text {
    display: none;
  }

  .j4k7n1-search-trigger {
    padding: 8px;
  }

  .f9g3h7-hero-carousel-container {
    margin-top: 110px;
  }
}

@media (max-width: 768px) {
  .k8p2w5-customer-type-selector {
   display: none;
  }

  .r9t4x8-customer-navigation {
    gap: 20px;
  }

  .m2q7s4-customer-link {
    font-size: 13px;
  }

  .h5l9c3-main-header-wrapper {
    padding: 0px 0;
  }

  .b4n8t5-brand-text {
    font-size: 28px;
  }

  .s-logo-symbol {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .x2v5b8-action-controls {
    gap: 12px;
  }

  .w6y9z3-login-button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .f9g3h7-hero-carousel-container {
    margin-top: 110px;
  }
}

@media (max-width: 480px) {
  .v3n6j1-wrapper-container {
    padding: 0 15px;
  }

  .r9t4x8-customer-navigation {
    gap: 15px;
  }

  .m2q7s4-customer-link {
    font-size: 12px;
  }

  .b4n8t5-brand-text {
    font-size: 24px;
  }

  .s-logo-symbol {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .p6w9e2-logo-link {
    gap: 8px;
  }

  .w6y9z3-login-button {
    padding: 8px 16px;
    font-size: 13px;
  }

  .mobile-menu-content {
    padding: 70px 15px 30px;
  }

  .mobile-menu-close {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .d8f2k6-header-content-grid {
    gap: 10px;
  }

  .x2v5b8-action-controls {
    gap: 8px;
  }

  .w6y9z3-login-button {
    padding: 6px 12px;
    font-size: 12px;
  }

  .j4k7n1-search-trigger {
    padding: 6px;
    font-size: 14px;
  }
}

/* Hero Slider Styles */
.f9g3h7-hero-carousel-container {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 120px;
    overflow: hidden;
}

.c4d8k2-slider-viewport {
    position: relative;
    width: 100%;
    height: 100%;
}

.i6j9m3-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.i6j9m3-slide-item.active {
    opacity: 1;
}

.q1w5e8-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.t7u1i4-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.o5p8s2-slide-content-wrapper {
    position: relative;
    top: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.y2a6d9-content-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.g4h8l1-card-title {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.1;
}

.n7q1w4-card-subtitle {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.k3m7p0-card-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.r8s2v5-cta-button {
    display: inline-block;
    background: #e30613;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.r8s2v5-cta-button:hover {
    background: #c5050f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

/* Slider Navigation */
.z9x3c6-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z9x3c6-slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.z9x3c6-slider-nav.prev {
    left: 30px;
}

.z9x3c6-slider-nav.next {
    right: 30px;
}

/* Slider Indicators */
.b5v8n2-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Contact Sidebar */
.l8m2p6-contact-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.f3g7j1-contact-item {
    background: #e30613;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.f3g7j1-contact-item:hover {
    background: #c5050f;
    transform: translateX(-5px);
}

.f3g7j1-contact-item:first-child {
    border-top-left-radius: 8px;
}

.f3g7j1-contact-item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .u3i6o2-navigation-list {
        gap: 20px;
    }
    
    .n9m3q7-nav-link {
        font-size: 14px;
    }
    
    .y2a6d9-content-card {
        padding: 40px;
        max-width: 450px;
    }
    
    .g4h8l1-card-title {
        font-size: 40px;
    }
    
    .n7q1w4-card-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .a7c1f9-primary-menu-navigation {
        display: none;
    }
    
    .e8r2t5-mobile-menu-toggle {
        display: flex;
    }
    
    .x2v5b8-action-controls {
        gap: 15px;
    }
    
    .w6y9z3-login-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .f9g3h7-hero-carousel-container {
        margin-top: 100px;
        height: 80vh;
        min-height: 500px;
    }
    
    .y2a6d9-content-card {
        padding: 30px;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .g4h8l1-card-title {
        font-size: 32px;
    }
    
    .n7q1w4-card-subtitle {
        font-size: 18px;
    }
    
    .k3m7p0-card-description {
        font-size: 14px;
    }
    
    .z9x3c6-slider-nav {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .z9x3c6-slider-nav.prev {
        left: 15px;
    }
    
    .z9x3c6-slider-nav.next {
        right: 15px;
    }
    
    .l8m2p6-contact-sidebar {
        right: -5px;
    }
    
    .f3g7j1-contact-item {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .v3n6j1-wrapper-container {
        padding: 0 15px;
    }
    
    .r9t4x8-customer-navigation {
        gap: 20px;
    }
    
    .m2q7s4-customer-link {
        font-size: 12px;
    }
    
    .b4n8t5-brand-text {
        font-size: 24px;
    }
    
    .s-logo-symbol {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .y2a6d9-content-card {
        padding: 25px;
    }
    
    .g4h8l1-card-title {
        font-size: 28px;
    }
    
    .n7q1w4-card-subtitle {
        font-size: 16px;
    }
    
    .r8s2v5-cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .b5v8n2-slider-indicators {
        bottom: 20px;
    }
}

/* Animation for smooth transitions */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.i6j9m3-slide-item.active .y2a6d9-content-card {
    animation: slideInFromLeft 0.8s ease-out;
}




/* ============================= 
icon section
========================== */


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Services Section */
.q8w3r7-services-container-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.m5n9k2-wrapper-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.x7c4v1-services-grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Service Card Styles */
.p2l6h9-service-card-item {
    background: white;
    border-radius: 12px;
    padding: 40px 20px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.p2l6h9-service-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(227, 6, 19, 0.1);
}

.p2l6h9-service-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e30613, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.p2l6h9-service-card-item:hover::before {
    transform: scaleX(1);
}

/* Icon Container */
.z4x8m3-icon-container-wrapper {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d1f5g8-service-icon {
    font-size: 48px;
    color: #666;
    transition: all 0.3s ease;
}

.p2l6h9-service-card-item:hover .d1f5g8-service-icon {
    color: #e30613;
    transform: scale(1.1);
}

/* Special Icon Combinations */
.laptop-euro-icon {
    position: relative;
    display: inline-block;
}

.laptop-euro-icon .euro-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #666;
    background: white;
    padding: 2px 4px;
    border-radius: 3px;
    transition: color 0.3s ease;
}

.p2l6h9-service-card-item:hover .laptop-euro-icon .euro-symbol {
    color: #e30613;
}

.palm-car-icon {
    position: relative;
    display: inline-block;
}

.palm-car-icon .car-icon {
    font-size: 48px;
}

.palm-car-icon .palm-icon {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 24px;
    color: #666;
    transition: color 0.3s ease;
}

.p2l6h9-service-card-item:hover .palm-car-icon .palm-icon {
    color: #28a745;
}

/* Text Content */
.w9q2e5-text-content-area {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.r6t3y7-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.k8n1s4-service-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.p2l6h9-service-card-item:hover .r6t3y7-service-title,
.p2l6h9-service-card-item:hover .k8n1s4-service-subtitle {
    color: #e30613;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .x7c4v1-services-grid-layout {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .p2l6h9-service-card-item {
        padding: 35px 15px 25px;
    }
    
    .d1f5g8-service-icon {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .q8w3r7-services-container-section {
        padding: 60px 0;
    }
    
    .x7c4v1-services-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .p2l6h9-service-card-item {
        padding: 30px 15px 20px;
    }
    
    .z4x8m3-icon-container-wrapper {
        height: 70px;
        margin-bottom: 20px;
    }
    
    .d1f5g8-service-icon {
        font-size: 38px;
    }
    
    .r6t3y7-service-title,
    .k8n1s4-service-subtitle {
        font-size: 15px;
    }
    
    .laptop-euro-icon .euro-symbol {
        font-size: 16px;
    }
    
    .palm-car-icon .car-icon {
        font-size: 38px;
    }
    
    .palm-car-icon .palm-icon {
        font-size: 20px;
        top: -8px;
        right: -3px;
    }
}

@media (max-width: 480px) {
    .m5n9k2-wrapper-content-container {
        padding: 0 15px;
    }
    
    .x7c4v1-services-grid-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .p2l6h9-service-card-item {
        padding: 25px 20px 20px;
        margin: 0 10px;
    }
    
    .z4x8m3-icon-container-wrapper {
        height: 60px;
        margin-bottom: 15px;
    }
    
    .d1f5g8-service-icon {
        font-size: 36px;
    }
    
    .w9q2e5-text-content-area {
        min-height: 50px;
    }
    
    .r6t3y7-service-title,
    .k8n1s4-service-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .q8w3r7-services-container-section {
        padding: 40px 0;
    }
    
    .p2l6h9-service-card-item {
        padding: 20px 15px 15px;
        margin: 0 5px;
    }
    
    .d1f5g8-service-icon {
        font-size: 32px;
    }
    
    .z4x8m3-icon-container-wrapper {
        height: 55px;
        margin-bottom: 12px;
    }
    
    .r6t3y7-service-title,
    .k8n1s4-service-subtitle {
        font-size: 15px;
    }
}

/* Animation for cards appearing */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.p2l6h9-service-card-item {
    animation: fadeInUp 0.6s ease forwards;
}

.p2l6h9-service-card-item:nth-child(1) { animation-delay: 0.1s; }
.p2l6h9-service-card-item:nth-child(2) { animation-delay: 0.2s; }
.p2l6h9-service-card-item:nth-child(3) { animation-delay: 0.3s; }
.p2l6h9-service-card-item:nth-child(4) { animation-delay: 0.4s; }
.p2l6h9-service-card-item:nth-child(5) { animation-delay: 0.5s; }
.p2l6h9-service-card-item:nth-child(6) { animation-delay: 0.6s; }

/* Focus states for accessibility */
.p2l6h9-service-card-item:focus {
    outline: 2px solid #e30613;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .q8w3r7-services-container-section {
        padding: 20px 0;
    }
    
    .p2l6h9-service-card-item {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }
    
    .p2l6h9-service-card-item:hover {
        transform: none;
        box-shadow: none;
    }
}

/* ====================== */







/* Information Section */
.b9x4k7-information-section-container {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.h2m8p5-content-wrapper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t6w1q3-info-cards-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* Info Card Styles */
.y5r9n2-info-card-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.y5r9n2-info-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(227, 6, 19, 0.1);
}

.y5r9n2-info-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e30613, #ff4757);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.y5r9n2-info-card-wrapper:hover::before {
    transform: scaleX(1);
}

/* Card Content */
.c8d4f1-card-content-area {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.l3g7j6-card-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.n8b5t2-card-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.s1v5z8-card-description-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

.y5r9n2-info-card-wrapper:hover .l3g7j6-card-main-title,
.y5r9n2-info-card-wrapper:hover .n8b5t2-card-subtitle {
    color: #e30613;
}

/* Image and CTA Container */
.k9m2x4-image-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
}

.a7e3w6-circular-image-wrapper {
    flex-shrink: 0;
    margin-right: 20px;
}

.u4i8o1-circular-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}

.y5r9n2-info-card-wrapper:hover .u4i8o1-circular-image {
    border-color: #e30613;
    transform: scale(1.05);
}

/* CTA Button */
.p6q2r5-cta-button-link {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    transition: all 0.3s ease;
    flex-grow: 1;
    justify-content: flex-end;
    text-align: right;
}

.cta-text {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: color 0.3s ease;
}

.cta-arrow {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.y5r9n2-info-card-wrapper:hover .cta-text,
.y5r9n2-info-card-wrapper:hover .cta-arrow {
    color: #e30613;
}

.y5r9n2-info-card-wrapper:hover .cta-arrow {
    transform: translateX(5px);
}

.p6q2r5-cta-button-link:hover .cta-text {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .t6w1q3-info-cards-grid-layout {
        gap: 25px;
    }
    
    .y5r9n2-info-card-wrapper {
        padding: 35px 25px;
        min-height: 300px;
    }
    
    .l3g7j6-card-main-title {
        font-size: 22px;
    }
    
    .n8b5t2-card-subtitle {
        font-size: 17px;
    }
    
    .s1v5z8-card-description-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .b9x4k7-information-section-container {
        padding: 60px 0;
    }
    
    .t6w1q3-info-cards-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .y5r9n2-info-card-wrapper {
        padding: 30px 25px;
        min-height: 280px;
    }
    
    .l3g7j6-card-main-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .n8b5t2-card-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .s1v5z8-card-description-text {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .u4i8o1-circular-image {
        width: 70px;
        height: 70px;
    }
    
    .k9m2x4-image-cta-container {
        padding-top: 15px;
    }
    
    .a7e3w6-circular-image-wrapper {
        margin-right: 15px;
    }
    
    .cta-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .h2m8p5-content-wrapper-container {
        padding: 0 15px;
    }
    
    .y5r9n2-info-card-wrapper {
        padding: 25px 20px;
        min-height: 260px;
    }
    
    .l3g7j6-card-main-title {
        font-size: 18px;
    }
    
    .n8b5t2-card-subtitle {
        font-size: 15px;
    }
    
    .s1v5z8-card-description-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .u4i8o1-circular-image {
        width: 60px;
        height: 60px;
    }
    
    .k9m2x4-image-cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .a7e3w6-circular-image-wrapper {
        margin-right: 0;
        align-self: center;
    }
    
    .p6q2r5-cta-button-link {
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .cta-text {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .b9x4k7-information-section-container {
        padding: 40px 0;
    }
    
    .y5r9n2-info-card-wrapper {
        padding: 20px 15px;
        min-height: 240px;
    }
    
    .l3g7j6-card-main-title {
        font-size: 17px;
    }
    
    .n8b5t2-card-subtitle {
        font-size: 14px;
    }
    
    .s1v5z8-card-description-text {
        font-size: 12px;
    }
    
    .u4i8o1-circular-image {
        width: 55px;
        height: 55px;
    }
}

/* Animation for cards appearing */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.y5r9n2-info-card-wrapper {
    animation: fadeInUp 0.8s ease forwards;
}

.y5r9n2-info-card-wrapper:nth-child(1) { animation-delay: 0.1s; }
.y5r9n2-info-card-wrapper:nth-child(2) { animation-delay: 0.3s; }
.y5r9n2-info-card-wrapper:nth-child(3) { animation-delay: 0.5s; }

/* Focus states for accessibility */
.y5r9n2-info-card-wrapper:focus,
.p6q2r5-cta-button-link:focus {
    outline: 2px solid #e30613;
    outline-offset: 2px;
}

/* Loading state for images */
.u4i8o1-circular-image {
    background: #f0f0f0;
}

.u4i8o1-circular-image:not([src]),
.u4i8o1-circular-image[src="/placeholder.svg"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Print styles */
@media print {
    .b9x4k7-information-section-container {
        padding: 20px 0;
    }
    
    .y5r9n2-info-card-wrapper {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .y5r9n2-info-card-wrapper:hover {
        transform: none;
        box-shadow: none;
    }
    
    .cta-arrow {
        display: none;
    }
}












.cards-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.containerss {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.cardd {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cardd:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cardd:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.4;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-description strong {
    color: #333;
    font-weight: 600;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    margin-top: auto;
}

.card-link:hover {
    color: #0052a3;
}

.arrow-icon {
    transition: transform 0.2s ease;
}

.card-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .cards-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .containerss {
        padding: 0 16px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .cards-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .containerss {
        padding: 0 12px;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    
    .card-image {
        height: 180px;
    }
}

/* Additional responsive breakpoints for better grid behavior */
@media (min-width: 769px) and (max-width: 1100px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1101px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Focus states for accessibility */
.card-link:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
    border-radius: 4px;
}

.cardd:focus-within {
    box-shadow: 0 0 0 2px #0066cc;
}













   .qx7z9-financial-dashboard-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Market Information Section */
        .mk8p3-market-intelligence-wrapper {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #e1e5e9;
            padding: 24px;
        }

        .hj4r2-market-data-header {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            border-bottom: 2px solid #f1f3f4;
            padding-bottom: 12px;
        }

        .vn9k5-financial-metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .bl6t8-market-indicator-column {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .zy3w1-financial-data-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid #f5f6f7;
        }

        .zy3w1-financial-data-row:last-child {
            border-bottom: none;
        }

        .dp4m7-market-symbol-label {
            font-weight: 500;
            color: #34495e;
            font-size: 14px;
            min-width: 80px;
        }

        .rq8n2-price-value-display {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .xc5l9-current-price-text {
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
        }

        .fg7k4-percentage-change-indicator {
            font-size: 13px;
            font-weight: 500;
            padding: 2px 6px;
            border-radius: 4px;
        }

        .positive-trend-kl9m3 {
            color: #27ae60;
            background-color: #d5f4e6;
        }

        .negative-trend-pq2x8 {
            color: #e74c3c;
            background-color: #fdeaea;
        }

        .uw6j1-additional-info-link {
            text-align: right;
            margin-top: 16px;
        }

        .uw6j1-additional-info-link a {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #bdc3c7;
            transition: all 0.3s ease;
        }

        .uw6j1-additional-info-link a:hover {
            color: #34495e;
            border-bottom-color: #34495e;
        }

        /* Customer Referral Section */
        .nt8y5-customer-acquisition-container {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid #e1e5e9;
            overflow: hidden;
        }

        .qm3r7-promotional-hero-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .lk9d4-referral-content-section {
            padding: 24px;
        }

        .bx2n6-referral-program-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 16px;
            line-height: 1.3;
        }

        .sv7h8-program-description-text {
            color: #7f8c8d;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ej4k9-program-action-link {
            text-align: right;
        }

        .ej4k9-program-action-link a {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #bdc3c7;
            transition: all 0.3s ease;
        }

        .ej4k9-program-action-link a:hover {
            color: #34495e;
            border-bottom-color: #34495e;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .qx7z9-financial-dashboard-container {
                padding: 15px;
                gap: 20px;
            }

            .vn9k5-financial-metrics-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .mk8p3-market-intelligence-wrapper,
            .lk9d4-referral-content-section {
                padding: 20px;
            }

            .hj4r2-market-data-header,
            .bx2n6-referral-program-title {
                font-size: 20px;
            }

            .sv7h8-program-description-text {
                font-size: 15px;
            }

            .qm3r7-promotional-hero-image {
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            .qx7z9-financial-dashboard-container {
                padding: 10px;
            }

            .mk8p3-market-intelligence-wrapper,
            .lk9d4-referral-content-section {
                padding: 16px;
            }

            .zy3w1-financial-data-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 4px;
            }

            .rq8n2-price-value-display {
                align-self: flex-end;
            }

            .qm3r7-promotional-hero-image {
                height: 180px;
            }
        }







             .zx8k4-service-consultation-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            text-align: center;
        }

        .mq7n2-service-section-header {
            font-size: 32px;
            font-weight: 400;
            color: #2c3e50;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
        }

        .vp9r5-contact-information-container {
            margin-bottom: 50px;
            color: #7f8c8d;
            font-size: 14px;
            line-height: 1.8;
        }

        .bh3t6-emergency-hotline-info {
            margin-bottom: 8px;
        }

        .jk2w8-emergency-number-highlight {
            font-weight: 600;
            color: #34495e;
        }

        .fl5y1-banking-hotline-details {
            margin-bottom: 8px;
        }

        .dx9c4-hotline-number-emphasis {
            font-weight: 600;
            color: #34495e;
        }

        .qr6z3-pricing-disclaimer-text {
            font-size: 13px;
            margin-bottom: 12px;
        }

        .nt8p7-all-contacts-link {
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            border-bottom: 1px solid #bdc3c7;
            transition: all 0.3s ease;
        }

        .nt8p7-all-contacts-link:hover {
            color: #34495e;
            border-bottom-color: #34495e;
        }

        .lw4k9-service-options-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            max-width: 800px;
            margin: 0 auto;
        }

        .xy2m5-service-option-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .xy2m5-service-option-item:hover {
            transform: translateY(-2px);
        }

        .gh7r8-service-icon-container {
            width: 60px;
            height: 60px;
            margin-bottom: 16px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pk3n6-service-icon-svg {
            width: 48px;
            height: 48px;
            fill: #7f8c8d;
            transition: fill 0.3s ease;
        }

        .xy2m5-service-option-item:hover .pk3n6-service-icon-svg {
            fill: #34495e;
        }

        .rd4j9-live-chat-indicator {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 12px;
            height: 12px;
            background-color: #e74c3c;
            border-radius: 50%;
            border: 2px solid #ffffff;
        }

        .uc8t5-service-option-label {
            font-size: 14px;
            color: #7f8c8d;
            font-weight: 400;
            text-align: center;
            transition: color 0.3s ease;
        }

        .xy2m5-service-option-item:hover .uc8t5-service-option-label {
            color: #34495e;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .lw4k9-service-options-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                max-width: 600px;
            }
        }

        @media (max-width: 768px) {
            .zx8k4-service-consultation-wrapper {
                padding: 40px 15px;
            }

            .mq7n2-service-section-header {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .vp9r5-contact-information-container {
                margin-bottom: 40px;
                font-size: 13px;
            }

            .lw4k9-service-options-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
                max-width: 400px;
            }

            .gh7r8-service-icon-container {
                width: 55px;
                height: 55px;
            }

            .pk3n6-service-icon-svg {
                width: 42px;
                height: 42px;
            }
        }

        @media (max-width: 480px) {
            .zx8k4-service-consultation-wrapper {
                padding: 30px 10px;
            }

            .mq7n2-service-section-header {
                font-size: 24px;
                margin-bottom: 25px;
            }

            .lw4k9-service-options-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 200px;
            }

            .vp9r5-contact-information-container {
                text-align: left;
                max-width: 300px;
                margin: 0 auto 35px;
            }
        }

        @media (max-width: 360px) {
            .gh7r8-service-icon-container {
                width: 50px;
                height: 50px;
            }

            .pk3n6-service-icon-svg {
                width: 38px;
                height: 38px;
            }

            .uc8t5-service-option-label {
                font-size: 13px;
            }
        }










         .kjhgfds-hero {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .kjhgfds-hero img {
      width: 100%;
      height: auto;
      display: block;
    }

    .kjhgfds-overlay-box {
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      background-color: white;
      padding: 30px;
      border-radius: 12px;
      max-width: 500px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .kjhgfds-overlay-box h1 {
      font-size: 2.2rem;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .kjhgfds-overlay-box p {
      font-size: 1.1rem;
      color: #333;
    }

    .kjhgfds-breadcrumb {
      margin: 20px 10%;
      font-size: 0.9rem;
      color: #555;
    }

    .kjhgfds-breadcrumb a {
      color: #005aa7;
      text-decoration: none;
    }

    .kjhgfds-breadcrumb a:hover {
      text-decoration: underline;
    }

    .kjhgfds-section {
      margin: 20px 10%;
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .kjhgfds-section h2 {
      font-size: 1.6rem;
      margin-bottom: 10px;
    }

    .kjhgfds-fixed-icons {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      z-index: 9999;
    }

    .kjhgfds-fixed-icons a {
      display: block;
      background-color: red;
      padding: 15px;
      border-bottom: 1px solid #fff;
      text-align: center;
    }

    .kjhgfds-fixed-icons img {
      width: 28px;
      height: 28px;
    }

    @media (max-width: 768px) {
      .kjhgfds-overlay-box {
        left: 5%;
        right: 5%;
        width: auto;
        max-width: none;
      }

      .kjhgfds-overlay-box h1 {
        font-size: 1.6rem;
      }

      .kjhgfds-overlay-box p {
        font-size: 1rem;
      }

      .kjhgfds-fixed-icons a {
        padding: 10px;
      }

      .kjhgfds-fixed-icons img {
        width: 24px;
        height: 24px;
      }
    }
       .kjhSADAgfds-container {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
    }

    .kjhSADAgfds-button {
      background-color: red;
      color: white;
      padding: 12px 24px;
      border-radius: 25px;
      font-weight: bold;
      display: inline-block;
      margin: 20px auto;
      text-align: center;
    }

    .kjhSADAgfds-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .kjhSADAgfds-box {
      background: white;
      padding: 20px;
      border-radius: 10px;
      flex: 1;
      min-width: 300px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .kjhSADAgfds-box h2 {
      font-size: 20px;
      margin-bottom: 15px;
    }

    .kjhSADAgfds-list {
      list-style: none;
      padding: 0;
    }

    .kjhSADAgfds-list li {
      margin-bottom: 15px;
      padding-left: 20px;
      position: relative;
    }

    .kjhSADAgfds-list li::before {
      content: "\2713";
      color: green;
      position: absolute;
      left: 0;
      top: 0;
    }

    .kjhSADAgfds-list strong {
      display: block;
    }

    a {
      color: #0066cc;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .kjhSADAgfds-grid {
        flex-direction: column;
      }
    }


    .bxcjhsgyu-container {
      max-width: 900px;
      margin: auto;
    }
    .bxcjhsgyu-card {
      background-color: #fff;
      border-radius: 10px;
      padding: 20px;
      margin-bottom: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }
    .bxcjhsgyu-title {
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .bxcjhsgyu-subtitle {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .bxcjhsgyu-table {
      width: 100%;
      border-collapse: collapse;
    }
    .bxcjhsgyu-table th,
    .bxcjhsgyu-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #eee;
    }
    .bxcjhsgyu-table tr:nth-child(even) {
      background-color: #f2f2f2;
    }
    @media (max-width: 600px) {
      .bxcjhsgyu-table th,
      .bxcjhsgyu-table td {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px;
      }
      .bxcjhsgyu-table tr {
        margin-bottom: 10px;
        display: block;
      }
    }


    .sdfghjknbv-container {
      background-color: white;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border-radius: 8px;
    }
    .sdfghjknbv-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .sdfghjknbv-section {
      margin-bottom: 30px;
    }
    .sdfghjknbv-subtitle {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .sdfghjknbv-row {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      background-color: #f0f0f0;
      margin-bottom: 5px;
      border-radius: 5px;
    }
    .sdfghjknbv-link {
      color: #0056b3;
      text-decoration: none;
    }
    @media (max-width: 600px) {
      .sdfghjknbv-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }

 
    .sdfghjknbv-container,
    .piuytr-container {
      background-color: white;
      max-width: 800px;
      margin: 0 auto 20px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      border-radius: 8px;
    }
    .sdfghjknbv-title,
    .piuytr-title {
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .sdfghjknbv-section,
    .piuytr-section {
      margin-bottom: 30px;
    }
    .sdfghjknbv-subtitle,
    .piuytr-subtitle {
      font-weight: bold;
      margin-bottom: 10px;
    }
    .sdfghjknbv-row,
    .piuytr-row {
      display: flex;
      justify-content: space-between;
      padding: 10px;
      background-color: #f0f0f0;
      margin-bottom: 5px;
      border-radius: 5px;
    }
    .sdfghjknbv-link,
    .piuytr-link {
      color: #0056b3;
      text-decoration: none;
    }
    @media (max-width: 600px) {
      .sdfghjknbv-row,
      .piuytr-row {
        flex-direction: column;
        align-items: flex-start;
      }
    }


    .weeusncb-container {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      max-width: 800px;
      margin: auto;
    }
    .weeusncb-header {
      font-size: 24px;
      font-weight: bold;
      padding: 20px;
      border-bottom: 1px solid #ddd;
    }
    .weeusncb-subheader {
      font-weight: bold;
      padding: 10px 20px;
      background: #fff;
    }
    .weeusncb-row {
      display: flex;
      justify-content: space-between;
      padding: 15px 20px;
      background: #f6f6f6;
      border-top: 1px solid #e0e0e0;
      flex-wrap: wrap;
    }
    .weeusncb-row:nth-child(even) {
      background: #ffffff;
    }
    .weeusncb-label {
      font-weight: 600;
      flex: 1 1 40%;
    }
    .weeusncb-value {
      flex: 1 1 55%;
    }
    @media (max-width: 600px) {
      .weeusncb-row {
        flex-direction: column;
      }
         .login-button {
      width: 40% !important;
    }
    }





     /* Top Navigation */
    .top-nav {
      background-color: #e60000;
      padding: 10px;
    }

    .top-nav-container {
      display: flex;
      gap: 30px;
    }

    .top-nav .nav-link {
      color: white;
      text-decoration: none;
      font-size: 14px;
    }

    .top-nav .nav-link:hover {
      text-decoration: underline;
    }

    /* Main Header */
    .header {
      background-color: #e60000;
      padding: 35px 0;
      border-top: solid rgba(0, 0, 0, 0.11) 1px;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
    }

    .logo-icon {
      background-color: white;
      color: #e60000;
      width: 35px;
      height: 35px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 18px;
    }

    .logo-text {
      font-size: 24px;
      font-weight: normal;
    }

    /* Main Navigation */
    .main-nav {
      display: flex;
      gap: 30px;
      flex: 1;
      justify-content: center;
    }

    .nav-item {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 5px 0;
      transition: opacity 0.3s;
    }

    .nav-item:hover {
      opacity: 0.8;
    }

    /* Search */
    .search {
      display: flex;
      align-items: center;
      gap: 8px;
      color: white;
      cursor: pointer;
    }

    .search-icon {
      font-size: 18px;
    }

    .search-text {
      font-size: 16px;
    }

    .search:hover {
      opacity: 0.8;
    }

    /* Main Content */
    .main-content {
      min-height: calc(100vh - 120px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 0px;
    }

    .login-container {
      width: 100%;
      text-align: center;
    }

    .login-title {
      font-size: 24px;
      color: #333;
      margin-bottom: 30px;
      font-weight: normal;
    }

   

    .input-group {
      margin-bottom: 20px;
  
    }

    .login-input {
      width: 50%;
      padding: 30px;
      border: 1px solid #000000;
      border-radius: 4px;
      font-size: 16px;
      background-color: #ffffff;
      transition: border-color 0.3s, background-color 0.3s;
    }

    .login-input:focus {
      outline: none;
      border-color: #e60000;
      background-color: white;
    }

    .login-input::placeholder {
      color: #999;
    }

    .login-button {
      width: 15%;
      background-color: #e60000;
      color: white;
      border: none;
      border-radius: 25px;
      padding: 15px;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .login-button:hover {
      background-color: #cc0000;
    }

    .login-button:active {
      background-color: #b30000;
    }

    .login-links {
      display: flex;
      justify-content: center;
      align-items: center;

      gap: 40px;
      margin-top: 45px;
    }

    .help-link {
      color: #666;
      text-decoration: none;
      font-size: 14px;
    }

    .help-link:hover {
      color: #e60000;
      text-decoration: underline;
    }

    .separator {
      color: #ccc;
      font-size: 14px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .main-nav {
        gap: 20px;
      }

      .nav-item {
        font-size: 14px;
      }
    }

    @media (max-width: 768px) {
      .header-container {
        flex-direction: column;
        gap: 15px;
      }

      .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
      }

      .login-container {
        padding: 30px 00px;
        margin: 0 0px;
      }

      .login-links {
        flex-direction: column;
        gap: 10px;
      }

      .separator {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .top-nav-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }

      .main-nav {
        gap: 10px;
      }

      .nav-item {
        font-size: 12px;
      }
    }

    .banking-promotion-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 200px;
    }

    .cta-section-container {
      max-width: 800px;
      width: 100%;
    }

    .banking-offer-row,
    .demo-offer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 0;
      border-bottom: 1px solid #e0e0e0;
    }

    .demo-offer-row {
      border-bottom: none;
    }

    .question-text,
    .demo-label {
      font-size: 16px;
      color: #333;
      flex: 1;
    }

    .activation-link,
    .testing-link {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #333;
      font-size: 16px;
      font-weight: 500;
      transition: all 0.3s ease;
      padding: 5px 10px;
      border-radius: 4px;
    }

    .activation-link:hover,
    .testing-link:hover {
      color: #0066cc;
      background-color: rgba(0, 102, 204, 0.05);
    }

    .link-text {
      transition: color 0.3s ease;
    }

    .arrow-symbol {
      font-size: 18px;
      transition: transform 0.3s ease;
    }

    .activation-link:hover .arrow-symbol,
    .testing-link:hover .arrow-symbol {
      transform: translateX(3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .banking-offer-row,
      .demo-offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 0;
      }

      .activation-link,
      .testing-link {
        align-self: flex-end;
      }
    }

    @media (max-width: 480px) {
      .cta-section-container {
        padding: 0 10px;
      }

      .question-text,
      .demo-label,
      .activation-link,
      .testing-link {
        font-size: 14px;
      }

      .banking-offer-row,
      .demo-offer-row {
        padding: 15px 0;
      }
    }

    .service-page-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .consultation-section {
      text-align: center;
    }

    .service-main-title {
      font-size: 32px;
      color: #333;
      margin-bottom: 30px;
      font-weight: normal;
    }

    /* Contact Information */
    .contact-info-block {
      margin-bottom: 50px;
    }

    .emergency-hotline {
      margin-bottom: 15px;
    }

    .hotline-label {
      color: #666;
      font-size: 16px;
    }

    .hotline-number {
      color: #333;
      font-weight: bold;
      font-size: 16px;
    }

    .banking-hotline-info {
      margin-bottom: 10px;
    }

    .banking-hotline-text {
      color: #666;
      font-size: 14px;
      display: block;
      margin-bottom: 5px;
    }

    .rate-info {
      color: #666;
      font-size: 14px;
    }

    .all-contacts-wrapper {
      margin-top: 15px;
    }

    .all-contact-options {
      color: #0066cc;
      text-decoration: none;
      font-size: 16px;
    }

    .all-contact-options:hover {
      text-decoration: underline;
    }

    /* Primary Services Grid */
    .primary-services-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 40px;
      margin-bottom: 60px;
      justify-items: center;
    }

    .service-option-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      transition: transform 0.3s ease;
      padding: 20px;
      border-radius: 8px;
    }

    .service-option-card:hover {
      transform: translateY(-5px);
      background-color: rgba(0, 102, 204, 0.05);
    }

    .service-icon-wrapper {
      margin-bottom: 15px;
      position: relative;
    }

    .calendar-icon,
    .location-icon,
    .email-icon,
    .headphones-icon {
      font-size: 48px;
      color: #666;
    }

    .chat-icon-container {
      position: relative;
    }

    .chat-bubble {
      font-size: 48px;
      color: #666;
    }

    .notification-dot {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 12px;
      height: 12px;
      background-color: #e60000;
      border-radius: 50%;
    }

    .service-option-label {
      font-size: 14px;
      color: #333;
      text-align: center;
      max-width: 120px;
    }

    /* Additional Services */
    .additional-services-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 40px;
    }

    .services-column-left,
    .services-column-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .service-item-row {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 10px 0;
      border-bottom: 1px solid #e0e0e0;
    }

    .service-item-row:last-child {
      border-bottom: none;
    }

    .small-service-icon {
      font-size: 20px;
      color: #666;
      width: 30px;
      text-align: center;
    }

    .app-icon {
      background-color: #0066cc;
      color: white;
      border-radius: 4px;
      padding: 2px 4px;
      font-size: 10px;
      font-weight: bold;
    }

    .service-item-link {
      color: #333;
      text-decoration: none;
      font-size: 14px;
      flex: 1;
      text-align: left;
    }

    .service-item-link:hover {
      color: #0066cc;
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .primary-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .primary-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
      }

      .additional-services-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .service-main-title {
        font-size: 28px;
      }
    }

    @media (max-width: 480px) {
      .primary-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .service-page-wrapper {
        padding: 20px 15px;
      }

      .service-main-title {
        font-size: 24px;
      }
    }

    .footer-navigation-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    /* Main Navigation Links */
    .footer-links-container {
      margin-bottom: 60px;
    }

    .navigation-columns-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
    }

    .footer-nav-column {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-navigation-link {
      color: #666;
      text-decoration: none;
      font-size: 14px;
      line-height: 1.4;
      transition: color 0.3s ease;
    }

    .footer-navigation-link:hover {
      color: #0066cc;
      text-decoration: underline;
    }

    /* Awards Section */
    .awards-showcase-section {
      margin-bottom: 50px;
    }

    .awards-display-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
      align-items: start;
    }

    .award-item-container {
      text-align: center;
    }

    .award-badge {
      width: 120px;
      height: 160px;
      margin: 0 auto 15px;
      border-radius: 8px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      position: relative;
    }

    /* Money Contest Badge */
    .money-contest {
      color: #333;
    }

    .badge-header {
      font-size: 14px;
      margin-bottom: 5px;
    }

    .badge-main {
      font-size: 12px;
      margin-bottom: 5px;
    }

    .badge-year {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .badge-category {
      background-color: #333;
      color: white;
      padding: 4px 8px;
      font-size: 10px;
      border-radius: 4px;
    }

    /* Handelsblatt Badge */
    .handelsblatt-badge {
      background-color: white;
      border: 2px solid #0066cc;
      color: #0066cc;
    }

    .handelsblatt-logo {
      font-size: 10px;
      margin-bottom: 5px;
    }

    .depot-text {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .rating-text {
      font-size: 14px;
      color: #00aa00;
      margin-bottom: 5px;
    }

    .rating-score {
      font-size: 12px;
    }

    /* Vermögensverwalter Badge */
    .vermogensverwalter-badge {
      background: linear-gradient(135deg, #d4af37, #ffd700);
      color: #333;
      padding: 10px;
    }

    .vermogens-title {
      font-size: 16px;
      margin-bottom: 5px;
    }

    .vermogens-subtitle {
      font-size: 12px;
      margin-bottom: 8px;
    }

    .vermogens-details {
      font-size: 8px;
      line-height: 1.2;
    }

    /* Charta Badge */
    .charta-badge {
      background-color: white;
      border: 2px solid #0066cc;
      color: #0066cc;
    }

    .charta-dots {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .charta-text {
      font-size: 12px;
      margin-bottom: 5px;
    }

    .charta-subtitle {
      background-color: #0066cc;
      color: white;
      padding: 2px 6px;
      font-size: 8px;
      border-radius: 3px;
    }

    .award-description-text {
      font-size: 12px;
      color: #666;
      line-height: 1.4;
      max-width: 150px;
      margin: 0 auto;
    }

    /* Bottom Footer */
    .bottom-footer-section {
      border-top: 1px solid #e0e0e0;
      padding-top: 30px;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .language-selector-wrapper {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .globe-icon {
      font-size: 16px;
    }

    .language-dropdown {
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 5px 10px;
      font-size: 14px;
      background-color: white;
    }

    .legal-links-container {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .legal-footer-link {
      color: #666;
      text-decoration: none;
      font-size: 12px;
    }

    .legal-footer-link:hover {
      color: #0066cc;
      text-decoration: underline;
    }

    .additional-links-container {
      display: flex;
      gap: 20px;
    }

    .additional-footer-link {
      color: #666;
      text-decoration: none;
      font-size: 12px;
    }

    .additional-footer-link:hover {
      color: #0066cc;
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .navigation-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .awards-display-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navigation-columns-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .awards-display-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
      }

      .legal-links-container {
        flex-direction: column;
        gap: 10px;
      }
    }

    @media (max-width: 480px) {
      .awards-display-grid {
        grid-template-columns: 1fr;
      }

      .footer-navigation-wrapper {
        padding: 20px 15px;
      }
    }

    .error{
      color: red;
      padding: 20px;
      background-color: rgba(255, 131, 131, 0.144);
      border-radius: 10px;
    }
    
        .zx9k4-business-banking-container-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .mq7n3-dual-column-layout-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .vp8r2-business-info-card-container {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border: 1px solid #e1e5e9;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .vp8r2-business-info-card-container:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            transform: translateY(-2px);
        }

        .bh4t6-primary-heading-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .jk3w8-secondary-heading-title {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .fl6y1-descriptive-content-text {
            color: #5a6c7d;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 24px;
            text-align: justify;
        }

        .dx9c5-highlighted-link-text {
            color: #3498db;
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .dx9c5-highlighted-link-text:hover {
            color: #2980b9;
        }

        .qr7z3-action-button-container {
            margin-top: 28px;
            text-align: right;
        }

        .nt8p4-cta-button-link {
            display: inline-flex;
            align-items: center;
            color: #7f8c8d;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .nt8p4-cta-button-link:hover {
            color: #34495e;
            border-bottom-color: #34495e;
        }

        .lw5k9-arrow-indicator-symbol {
            margin-left: 6px;
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .nt8p4-cta-button-link:hover .lw5k9-arrow-indicator-symbol {
            transform: translateX(3px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .zx9k4-business-banking-container-wrapper {
                padding: 30px 15px;
            }

            .mq7n3-dual-column-layout-grid {
                gap: 25px;
            }

            .vp8r2-business-info-card-container {
                padding: 28px;
            }

            .bh4t6-primary-heading-title {
                font-size: 22px;
            }

            .jk3w8-secondary-heading-title {
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            .zx9k4-business-banking-container-wrapper {
                padding: 25px 10px;
            }

            .mq7n3-dual-column-layout-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .vp8r2-business-info-card-container {
                padding: 24px;
            }

            .bh4t6-primary-heading-title {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .jk3w8-secondary-heading-title {
                font-size: 18px;
                margin-bottom: 14px;
            }

            .fl6y1-descriptive-content-text {
                font-size: 14px;
                margin-bottom: 20px;
                text-align: left;
            }

            .qr7z3-action-button-container {
                margin-top: 20px;
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .zx9k4-business-banking-container-wrapper {
                padding: 20px 8px;
            }

            .vp8r2-business-info-card-container {
                padding: 20px;
            }

            .bh4t6-primary-heading-title {
                font-size: 18px;
                margin-bottom: 14px;
            }

            .jk3w8-secondary-heading-title {
                font-size: 16px;
                margin-bottom: 12px;
            }

            .fl6y1-descriptive-content-text {
                font-size: 13px;
                line-height: 1.6;
                margin-bottom: 18px;
            }

            .nt8p4-cta-button-link {
                font-size: 13px;
            }
        }

        @media (max-width: 360px) {
            .vp8r2-business-info-card-container {
                padding: 16px;
            }

            .bh4t6-primary-heading-title {
                font-size: 16px;
            }

            .jk3w8-secondary-heading-title {
                font-size: 15px;
            }

            .fl6y1-descriptive-content-text {
                font-size: 12px;
            }
        }












        .qx9z7k-wichtige-services-hauptcontainer {
            max-width: 850px;
            margin: 0 auto;
            padding: 20px 20px;
            font-family: Arial, sans-serif;
        }

        .mn4p8r-services-titel-bereich {
            margin-bottom: 30px;
        }

        .vb2w5t-haupttitel-services {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .lk6j3h-services-grid-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            max-width: 800px;
        }

        .fy8d1s-einzelner-service-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            text-decoration: none;
            color: #333;
            transition: color 0.3s ease;
            border-bottom: 1px solid transparent;
        }

        .fy8d1s-einzelner-service-item:hover {
            color: #0066cc;
        }

        .zr5n9m-icon-wrapper-container {
            margin-right: 15px;
            flex-shrink: 0;
        }

        .bg7x4q-service-icon-svg {
            width: 24px;
            height: 24px;
            fill: #666;
            transition: fill 0.3s ease;
        }

        .fy8d1s-einzelner-service-item:hover .bg7x4q-service-icon-svg {
            fill: #0066cc;
        }

        .wt3k8p-service-text-label {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.4;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lk6j3h-services-grid-layout {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .qx9z7k-wichtige-services-hauptcontainer {
                padding: 30px 15px;
            }

            .wt3k8p-service-text-label {
                font-size: 15px;
            }

            .bg7x4q-service-icon-svg {
                width: 22px;
                height: 22px;
            }
        }

        @media (max-width: 480px) {
            .qx9z7k-wichtige-services-hauptcontainer {
                padding: 20px 10px;
            }

            .wt3k8p-service-text-label {
                font-size: 14px;
            }

            .zr5n9m-icon-wrapper-container {
                margin-right: 12px;
            }

            .bg7x4q-service-icon-svg {
                width: 20px;
                height: 20px;
            }
        }



        .qw8r5t-awards-hauptcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            background-color: #f8f9fa;
        }

        .mx7n4k-awards-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            align-items: start;
        }

        .bv3z8p-einzelner-award-item {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ly6j2q-award-badge-container {
            width: 180px;
            height: 180px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Familie Badge */
        .ht9k5w-familie-badge {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4CAF50, #2E7D32);
            border: 4px solid #1B5E20;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            position: relative;
        }

        .ht9k5w-familie-badge::before {
            content: "Fortschrittlicher Vereinbarkeit";
            position: absolute;
            top: 15px;
            font-size: 10px;
            text-align: center;
            line-height: 1.2;
        }

        .ht9k5w-familie-badge .main-text {
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            line-height: 1.1;
            margin: 10px 0;
        }

        .ht9k5w-familie-badge .year {
            font-size: 24px;
            font-weight: bold;
        }

        .ht9k5w-familie-badge::after {
            content: "Wir machen mit";
            position: absolute;
            bottom: 15px;
            font-size: 11px;
            font-style: italic;
        }

        /* Arbeitgeber Badge */
        .df4x7m-arbeitgeber-badge {
            width: 200px;
            height: 120px;
            border-radius: 60px;
            background: linear-gradient(135deg, #81C784, #4CAF50);
            border: 3px solid #2E7D32;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            position: relative;
        }

        .df4x7m-arbeitgeber-badge .platz-text {
            font-size: 14px;
            font-weight: bold;
        }

        .df4x7m-arbeitgeber-badge .main-text {
            font-size: 12px;
            text-align: center;
            line-height: 1.2;
            margin: 5px 0;
        }

        .df4x7m-arbeitgeber-badge .year {
            font-size: 18px;
            font-weight: bold;
        }

        .df4x7m-arbeitgeber-badge .brand {
            position: absolute;
            bottom: 8px;
            font-size: 10px;
            font-style: italic;
        }

        /* Qualität Badge */
        .rg2n8s-qualitat-badge {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF5722, #D32F2F);
            border: 4px solid #B71C1C;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            position: relative;
        }

        .rg2n8s-qualitat-badge .top-text {
            position: absolute;
            top: 20px;
            font-size: 10px;
            text-align: center;
        }

        .rg2n8s-qualitat-badge .main-text {
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            line-height: 1.2;
            margin: 10px 0;
        }

        .rg2n8s-qualitat-badge .stars {
            font-size: 16px;
            color: #FFD700;
            margin: 5px 0;
        }

        .rg2n8s-qualitat-badge .bottom-text {
            position: absolute;
            bottom: 15px;
            font-size: 9px;
            text-align: center;
            line-height: 1.1;
        }

        /* Focus Money Badge */
        .pk5t9x-focus-badge {
            width: 160px;
            height: 200px;
            background: linear-gradient(135deg, #424242, #212121);
            border: 3px solid #000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            position: relative;
            border-radius: 8px;
        }

        .pk5t9x-focus-badge .logo {
            position: absolute;
            top: 15px;
            font-size: 12px;
            font-weight: bold;
            color: #FFD700;
        }

        .pk5t9x-focus-badge .contest-text {
            font-size: 10px;
            text-align: center;
            margin: 20px 0 10px 0;
            line-height: 1.2;
        }

        .pk5t9x-focus-badge .testsieger {
            font-size: 16px;
            font-weight: bold;
            background: #FFD700;
            color: #000;
            padding: 8px 16px;
            border-radius: 4px;
            margin: 10px 0;
        }

        .zx4m7k-award-titel-text {
            font-size: 16px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .cn8p2v-award-beschreibung-text {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .mx7n4k-awards-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .mx7n4k-awards-grid-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .qw8r5t-awards-hauptcontainer {
                padding: 40px 15px;
            }
        }

        @media (max-width: 480px) {
            .ly6j2q-award-badge-container {
                width: 160px;
                height: 160px;
            }

            .ht9k5w-familie-badge,
            .rg2n8s-qualitat-badge {
                width: 160px;
                height: 160px;
            }

            .df4x7m-arbeitgeber-badge {
                width: 180px;
                height: 100px;
            }

            .pk5t9x-focus-badge {
                width: 140px;
                height: 180px;
            }
        }













        
/* 
    =========================================
    form css 
    =========================================== */



       .mainbdd {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            margin-top: 5%;
        }

        .qx7m9n2p_authentication_container {
            border-radius: 12px;
            padding: 40px;
            width: 100%;
            max-width: 700px;
        }

        .k8l3j5w9_main_heading {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 40px;
        }

        .r4t6y8u1_error_notification {
            background-color: #fdf2f2;
            border: 1px solid #fca5a5;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 24px;
            display: none;
        }

        .r4t6y8u1_error_notification.active {
            display: block;
        }

        .m3n5b7v2_error_content {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .z9x1c4v6_warning_icon {
            color: #dc2626;
            font-size: 20px;
            margin-top: 2px;
        }

        .p2q4w6e8_error_text {
            flex: 1;
        }

        .p2q4w6e8_error_text h4 {
            color: #dc2626;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .p2q4w6e8_error_text p {
            color: #7f1d1d;
            font-size: 14px;
        }

        .a5s7d9f1_form_wrapper {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .h6j8k0l2_input_group {
            position: relative;
        }

        .h6j8k0l2_input_group.readonly {
            background-color: #f3f4f6;
            border-radius: 8px;
            padding: 16px;
            border: 1px solid #e5e7eb;
        }

        .g3h5j7k9_input_label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #6b7280;
            margin-bottom: 8px;
        }

        .f2g4h6j8_text_input {
            width: 100%;
            padding: 26px 20px;
            border: 1px solid #686868;
            border-radius: 10px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
            background-color: white;
        }

        .f2g4h6j8_text_input.error {
            border-color: #dc2626;
        }

        .f2g4h6j8_text_input:focus {
            border:2px solid #1d4ed8;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .f2g4h6j8_text_input::placeholder {
            color: #9ca3af;
        }

        .d1s3a5f7_readonly_field {
            background: none;
            border: none;
            font-size: 16px;
            color: #1f2937;
            width: 100%;
            padding: 0;
        }

        .q9w1e3r5_change_link {
            position: absolute;
            right: 2%;
            top: 50%;
            transform: translateY(-50%);
            color: #6b7280;
            text-decoration: underline;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 4px;
            border: none;
            background: none;
        }

        .q9w1e3r5_change_link:hover {
            color: #374151;
        }

        .t7y9u1i3_password_container {
            position: relative;
        }

        .o5p7a9s1_show_password {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6b7280;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .o5p7a9s1_show_password:hover {
            color: #374151;
        }

        .i8o0p2q4_additional_info {
            display: none;
            margin-top: 24px;
        }

        .i8o0p2q4_additional_info.visible {
            display: block;
        }

        .w6e8r0t2_info_header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
        }

        .y4u6i8o0_info_icon {
            width: 16px;
            height: 16px;
            border: 1px solid #6b7280;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .x3c5v7b9_device_save_section {
            background-color: #f3f4f6;
            border-radius: 8px;
            padding: 10px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .n1m3b5v7_toggle_switch {
            position: relative;
            width: 48px;
            height: 24px;
            background-color: #d1d5db;
            border-radius: 12px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .n1m3b5v7_toggle_switch.active {
            background-color: #10b981;
        }

        .l9k7j5h3_toggle_knob {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .n1m3b5v7_toggle_switch.active .l9k7j5h3_toggle_knob {
            transform: translateX(24px);
        }

       

        .z8x6c4v2_device_info p {
            color: #374151;
            font-size: 14px;
            margin-bottom: 4px;
        }

        .z8x6c4v2_device_info a {
            color: #6b7280;
            text-decoration: underline;
            font-size: 14px;
        }

        .b6n8m0k2_illustration {
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-left: auto;
        }
        .cha1{
          height: 130px;
        }

        .v4c6x8z0_illustration_content {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 8px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .v4c6x8z0_illustration_content::before {
            content: '📱';
            font-size: 24px;
        }

        .s2d4f6g8_person_icon {
            position: absolute;
            bottom: -10px;
            left: -10px;
            width: 40px;
            height: 40px;
            background: #3b82f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .s2d4f6g8_person_icon::before {
            content: '👤';
            color: white;
            font-size: 16px;
        }

        .j7h5g3f1_submit_button {
            background: rgb(239, 0, 0);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            width: 30%;
        }

        .j7h5g3f1_submit_button:hover {
            background: linear-gradient(135deg, #d12121, #dc2121);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
        }

        .j7h5g3f1_submit_button:active {
            transform: translateY(0);
        }

        .u9i7o5p3_footer_links {
            display: flex;
            justify-content: space-between;
            margin-top: 32px;
            gap: 20px;
        }

        .u9i7o5p3_footer_links a {
            color: #414141;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
        }

        .u9i7o5p3_footer_links a:hover {
            color: #374151;
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .qx7m9n2p_authentication_container {
                padding: 24px;
                margin: 10px;
            }

            .k8l3j5w9_main_heading {
                font-size: 24px;
                margin-bottom: 32px;
            }

            .u9i7o5p3_footer_links {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .x3c5v7b9_device_save_section {
                /* flex-direction: column;
                text-align: center;
                gap: 12px; */
            }

            .b6n8m0k2_illustration {
                width: 100px;
                height: 100px;
                margin: 0 auto;
            }

            .v4c6x8z0_illustration_content {
                width: 60px;
                height: 60px;
            }
              .mainbdd {
         
            margin-top: 10%;
        }
          .z8x6c4v2_device_info p {
            color: #374151;
            font-size: 10px;
            margin-bottom: 4px;
        }
          .z8x6c4v2_device_info a {
            font-size: 10px;
        }
        .cha1{
          height: 70px;
        }
   

        }

        @media (max-width: 480px) {
            .qx7m9n2p_authentication_container {
                padding: 20px;
            }

            .k8l3j5w9_main_heading {
                font-size: 20px;
            }

            .f2g4h6j8_text_input {
                padding: 14px 16px;
                font-size: 14px;
            }

            .j7h5g3f1_submit_button {
                padding: 14px 28px;
                font-size: 14px;
            width: 50%;

            }
        }