/* Alapbeállítások */
* {
    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;
  }
  
  a {
    text-decoration: none;
    color: #007BFF;
  }
  
  ul {
    list-style: none;
  }
  
  /* Konténer */
  .container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    padding: 1rem 0;
  }
  
  /* Fejléc */
  header {
    background-color: #212529;
    color: #fff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    position: relative;
  }
  
  /* Hamburger Menu */
  .hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-left: auto;
    background: transparent;
    border: none;
    position: relative;
  }
  
  .hamburger-menu .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
  }
  
  .hamburger-menu .bar:not(:last-child) {
    margin-bottom: 5px;
  }
  
  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  
  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  header.scrolled {
    background-color: rgba(33, 37, 41, 0.95);
  }
  
  /* Page header styles */
  .page-header {
    padding-top: 100px; /* Add space for fixed header */
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    padding-bottom: 60px;
    margin-top: -20px; /* Compensate for body margin */
  }
  
  .page-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
  }
  
  .page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
  }
  
  .page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .page-header strong {
    color: #fff;
    font-weight: 600;
  }

  /* Process Section */
  .process-container {
    padding: 5rem 0 3rem;
    background-color: #fff;
    margin-top: 4rem;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
    position: relative;
  }

  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 2rem 3rem;
  }


  .step-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
  }

  .step-details {
    flex: 1;
  }

  .step-details h3 {
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
  }


  .step-connector {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translateX(-50%) rotate(90deg);
    color: #3498db;
    z-index: 1;
    background: white;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .materials-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 2.5rem;
    margin-top: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .materials-icon svg {
    fill: #2c3e50;
  }

  .materials-content h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  /* References Section */
  .references {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: #f9f9f9;
    background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  }

  .references-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
  }

  .references-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
  }

  .references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .reference-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
  }

  .reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .reference-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
  }

  .reference-card:hover .reference-image {
    transform: scale(1.05);
  }

  .reference-content {
    padding: 2rem;
    position: relative;
    background: white;
    z-index: 2;
  }

  .reference-content h3 {
    color: #2c3e50;
    margin: 0 0 0.8rem 0;
    font-size: 1.4rem;
  }


  .reference-meta {
    position: relative;
    padding-left: 25px;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .reference-meta::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #3498db;
    font-size: 0.9em;
  }

  .reference-meta::after {
    position: relative;
    padding-left: 25px;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .reference-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .reference-features {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .reference-features li {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f0f7ff;
    color: #1a73e8;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    border: 1px solid rgba(26, 115, 232, 0.1);
  }

  .reference-features li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    transition: width 0.3s ease;
    z-index: -1;
  }

  .reference-features li:hover::before {
    width: 100%;
  }

  .reference-features li:hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f0f7ff;
    color: #2980b9;
  }

  /* Testimonials Section */
  .testimonials {
    position: relative;
    margin-top: 5rem;
    text-align: center;
  }

  .testimonials h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
  }

  .testimonials h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
  }

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

  .testimonial {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: left;
    border: 1px solid rgba(0,0,0,0.04);
    transform: translateY(0);
  }

  .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  }

  .testimonial::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
    border-radius: 50%;
    transform: translate(30%, 30%);
    z-index: 0;
  }

  .testimonial::before {
    content: '\201C';
    font-size: 5rem;
    color: #f1f8ff;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
    z-index: 0;
  }

  .testimonial p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    padding-left: 1.5rem;
    border-left: 3px solid #e0e0e0;
  }

  .testimonial .author {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-style: normal;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f4ff 100%);
    z-index: -1;
    clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.7;
  }

  .testimonials::after {
    content: '\201C';
    font-size: 5rem;
    color: #f1f8ff;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    font-family: serif;
    z-index: 0;
  }

  /* CTA Section */
  .intro {
    padding: 4rem 0 3rem;
    text-align: center;
    background: white;
    border-bottom: 1px solid #f0f0f0;
  }

  .intro h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
  }

  .intro-text {
    color: #555;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .cta {
    position: relative;
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    margin: 4rem 0 0;
  }

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

  @media (max-width: 768px) {
    .cta {
      margin: 4rem 1rem 0;
      max-width: calc(100% - 2rem);
      padding: 4rem 1rem;
    }
  }

  .cta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
  }

  .cta p {
    color: #666;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 500px;
  }

  .cta .btn {
    background: #3498db;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    border: 2px solid #3498db;
  }

  .cta .btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
  }

  .cta .btn:hover {
    background: transparent;
    color: white;
  }

  .cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 86, 179, 0.05) 100%);
  z-index: 1;
}

  .cta .container {
    position: relative;
    z-index: 1;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

  @media (max-width: 768px) {
    .references-grid {
      grid-template-columns: 1fr;
    }
    
    .references-intro {
      margin-bottom: 3rem;
      padding: 0 1rem;
    }
    
    .testimonial-grid {
      grid-template-columns: 1fr;
      padding: 0 1rem;
    }
    
    .cta {
      padding: 4rem 1rem;
    }
    
    .cta h2 {
      font-size: 1.8rem;
    }
  }

  .materials-content p {
    color: #495057;
    margin: 0;
    line-height: 1.7;
  }

  /* Footer Styles */
  .site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 0 0;
    font-size: 1rem;
    line-height: 1.6;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    display: inline-block;
  }

  .footer-description {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
  }

  .footer-heading {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
  }

  .footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
  }

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

  .menu-item {
    margin-bottom: 0.8rem;
  }

  .menu-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }

  .menu-item a:hover {
    color: #3498db;
  }

  .menu-item i {
    margin-right: 8px;
    font-size: 0.7rem;
    color: #3498db;
  }

  .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
  }

  .contact-icon {
    color: #3498db;
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
  }

  .contact-text, .contact-text a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-text a:hover {
    color: #3498db;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }


  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #3498db;
    transform: translateY(-3px);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    color: #bdc3c7;
    margin: 0.5rem 0;
  }

  .footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .footer-legal a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-legal a:hover {
    color: #3498db;
  }

  .divider {
    color: rgba(255, 255, 255, 0.2);
  }

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

    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }

    .footer-legal {
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .process-steps {
      gap: 0.5rem;
    }

    .process-step {
      padding: 0 1rem 2rem;
    }

    .step-connector {
      display: block;
      bottom: -1.5rem;
    }

    .materials-card {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }
  }

  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
  }

  nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    position: relative;
  }

  nav ul li a {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ffc107;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  nav ul li a:hover::after {
    width: 100%;
  }

  nav ul li a:hover {
    color: #ffc107;
    transform: translateY(-2px);
  }

  /* Mobile Navigation */
  @media (max-width: 768px) {
    .hamburger-menu {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      max-width: 300px;
      height: 100vh;
      background-color: #212529;
      padding: 100px 20px 30px;
      transition: right 0.3s ease-in-out;
      z-index: 999;
      box-shadow: -2px 0 15px rgba(0, 0, 0, 0.3);
      overflow-y: auto;
      margin: 0;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin: 0;
      padding: 0;
    }
    
    .nav-links li {
      list-style: none;
      margin: 0;
      padding: 0;
      opacity: 1;
      transform: none;
      transition: transform 0.3s ease;
    }
    
    .nav-links li a {
      display: block;
      padding: 12px 15px;
      color: #fff;
      text-decoration: none;
      font-size: 1.1rem;
      border-radius: 4px;
      transition: all 0.2s ease;
    }
    
    .nav-links li a:hover,
    .nav-links li a:focus {
      background-color: rgba(255, 255, 255, 0.1);
      transform: translateX(5px);
    }
    
    /* Add overlay when menu is open */
    .menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(2px);
    }
    
    .menu-overlay.active {
      display: block;
      opacity: 1;
    }
    
    /* Prevent scrolling when menu is open */
    body.menu-open {
      overflow: hidden;
      position: fixed;
      width: 100%;
      height: 100%;
    }
  }

  nav ul li a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
  }

  nav ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Navbar divider */
  .nav-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
    display: inline-block;
    vertical-align: middle;
  }

  /* Phone button styles */
  .nav-cta {
    margin-left: 10px;
  }

  .btn-phone {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 0.95rem;
  }

  .btn-phone:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .phone-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
  }

  .phone-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .phone-number {
    margin-left: 8px;
    font-weight: 600;
    color: #ffc107;
  }

  /* Active state for nav items */
  nav ul li.active a {
    color: #ffc107;
    font-weight: 600;
  }

  nav ul li.active a::after {
    width: 100%;
    background-color: #ffc107;
  }

  header h1 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  header h1 a:hover {
    color: #ffc107;
    transform: translateY(-2px);
  }

  /* Hero Section */
  .hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
  }

  .hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
    transition: transform 0.5s ease;
  }

  .hero:hover img {
    transform: scale(1.03);
  }

  .hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Intro Section */
  .intro {
    padding: 6rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
  }

  .intro-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-tag {
    display: inline-block;
    background: #e9ecef;
    color: #007bff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
    font-weight: 800;
    position: relative;
    display: inline-block;
  }

  .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #00b4d8);
    margin: 1.5rem auto 0;
    border-radius: 2px;
  }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .intro-text {
    padding-right: 2rem;
  }

  .lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
  }

  .intro-features {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin: 3rem 0;
  }

  .intro-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #007bff;
  }

  .feature-icon-wrapper {
    background: #e3f2fd;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-icon {
    font-size: 1.8rem;
    color: #007bff;
  }

  .feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 700;
  }

  .feature-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
  }

  .intro-cta {
    margin-top: 3.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e9ecef;
  }

  .intro-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #007bff, #00b4d8);
  }

  .intro-cta p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
  }

  .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: #007bff;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    text-align: center;
    min-width: 200px;
  }

  .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    color: white;
    border-color: #0056b3;
  }

  .btn-outline {
    background: transparent;
    color: #007bff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    text-align: center;
    min-width: 200px;
  }

  .btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
  }

  /* Intro Image Styles */
  .intro-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 500px;
  }

  .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

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

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

  .experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .experience-badge:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #007bff;
    line-height: 1;
    margin-bottom: 0.3rem;
    background: linear-gradient(135deg, #007bff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .experience-badge .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    letter-spacing: 0.5px;
  }

  /* Responsive Styles */
  @media (max-width: 1024px) {
    .intro-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .intro-text {
      padding-right: 0;
    }
    
    .intro-image {
      min-height: 400px;
      max-width: 600px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 2.2rem;
    }
    
    .lead {
      font-size: 1.1rem;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
      width: 100%;
    }
    
    .intro-feature {
      padding: 1.2rem;
    }
    
    .feature-icon-wrapper {
      width: 50px;
      height: 50px;
    }
    
    .feature-content h3 {
      font-size: 1.15rem;
    }
  }
  
  .highlight {
    color: #4dabf7;
    font-weight: 700;
    position: relative;
    display: inline-block;
  }
  
  .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4dabf7;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
  }
  
  .hero:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2.5rem;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  .btn {
    background-color: #007BFF;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #0056b3;
  }
  
  /* Contact Page Styles */
/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10" fill="none" stroke="%23e9ecef" stroke-width="1"/></svg>');
  opacity: 0.05;
  z-index: 0;
}

.features .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
  padding: 0 1rem;
}

.section-tag {
  display: inline-block;
  background: #e7f5ff;
  color: #1971c2;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
  transition: height 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(77, 171, 247, 0.2);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #212529;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #4dabf7;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.feature-card:hover h3::after {
  width: 80px;
}

.feature-card p {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: #339af0;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.feature-link:hover {
  color: #1971c2;
  transform: translateX(5px);
}

.feature-link::after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.feature-link:hover::after {
  transform: translateX(3px);
}

.features-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.features-cta p {
  font-size: 1.3rem;
  color: #343a40;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #4dabf7 0%, #339af0 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(51, 154, 240, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(51, 154, 240, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(51, 154, 240, 0.3);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials .section-tag {
  display: inline-block;
  color: #007BFF;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.testimonials .section-title {
  font-size: 2.2rem;
  color: #212529;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.testimonials .section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-content {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-content .quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #495057;
  font-style: italic;
  position: relative;
  padding-left: 1.5rem;
}

.testimonial-content .quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 3rem;
  color: #e9ecef;
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #007BFF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #212529;
}

.author-info p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
}

.testimonials-cta p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 1.5rem;
}

.testimonials-cta .btn-outline {
  border: 2px solid #007BFF;
  color: #007BFF;
  background: transparent;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.testimonials-cta .btn-outline:hover {
  background: #007BFF;
  color: white;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #fff;
  position: relative;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  color: #212529;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.contact-form h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #007BFF;
}

.form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #80bdff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

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

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  position: relative;
  padding-left: 2rem;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 0.2rem;
  height: 1.25rem;
  width: 1.25rem;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: #007BFF;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #007BFF;
  border-color: #007BFF;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.btn-block {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info {
  position: relative;
}

.contact-intro {
  text-align: center;
  padding: 4rem 0;
  background: #f8f9fa;
  margin-bottom: 2rem;
}

.contact-intro h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact-intro .lead {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn i {
  font-size: 1rem;
}

.btn-primary {
  background: #007bff;
  color: white;
  border: 2px solid #007bff;
}

.btn-primary:hover {
  background: #0056b3;
  border-color: #0056b3;
}

.btn-outline {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn-outline:hover {
  background: rgba(0, 123, 255, 0.1);
}

@media (max-width: 576px) {
  .contact-intro {
    padding: 3rem 1rem;
  }
  
  .contact-intro h1 {
    font-size: 2rem;
  }
  
  .contact-intro .lead {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}

.cont.page-header {
  position: relative;
  padding: 8rem 0 6rem;
  margin-bottom: 3rem;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.contact-header {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(41, 128, 185, 0.9) 0%, rgba(44, 62, 80, 0.9) 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header h1 span {
  color: #3498db;
  position: relative;
  display: inline-block;
}

.page-header h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(52, 152, 219, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto 2rem;
  max-width: 300px;
}

.header-divider span {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.header-divider i {
  margin: 0 1.5rem;
  color: #3498db;
  font-size: 1.5rem;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-header .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.header-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  gap: 0.5rem;
  border: 2px solid transparent;
}

.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background: #3498db;
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header {
    padding: 6rem 0 4rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .page-header .lead {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  
  .header-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 80%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .header-divider i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bcd4);
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header .section-tag {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.page-header .lead {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header {
    padding: 4rem 0 3rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header .lead {
    font-size: 1.1rem;
  }
}

.contact-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 2rem;
}

.contact-card h3 {
  color: #212529;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.contact-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: #007BFF;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method .icon {
  font-size: 1.25rem;
  color: #007BFF;
  background: #e9f5ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-method:hover .icon {
  background: #007BFF;
  color: white;
  transform: rotate(5deg);
}

.contact-method h4 {
  color: #212529;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.contact-method p {
  color: #6c757d;
  margin: 0.2rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.map-section {
  margin: 4rem 0;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #212529;
  position: relative;
  padding-bottom: 1rem;
}

.map-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #007BFF;
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map {
  height: 100%;
  min-height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  padding: 2rem;
}

.map-info h3 {
  color: #212529;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.map-info p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.map-info h4 {
  color: #212529;
  margin: 1.5rem 0 0.8rem;
  font-size: 1.1rem;
}

.map-info ul {
  list-style: none;
  padding: 0;
}

.map-info ul li {
  color: #6c757d;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.map-info ul li::before {
  content: '•';
  color: #007BFF;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.faq-section {
  margin: 4rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #212529;
  position: relative;
  padding-bottom: 1rem;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #007BFF;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item h3 {
  margin: 0;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  color: #212529;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.faq-item h3:hover {
  color: #007BFF;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 1.5rem;
  margin: 0;
  color: #6c757d;
  line-height: 1.7;
  border-top: 1px solid #e9ecef;
}

.cta-banner {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #007BFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .map-container {
    grid-template-columns: 1fr;
  }
  
  .map {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-form-container,
  .contact-card {
    padding: 1.5rem;
  }
  
  .map-info {
    padding: 1.5rem;
  }
  
  .faq-item h3 {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
  
  .cta-banner {
    padding: 3rem 1rem;
  }
  
  .cta-banner h2 {
    font-size: 1.75rem;
  }
  
  .cta-banner p {
    font-size: 1.1rem;
  }
}

/* CTA Section */
.cta {
  background-color: #f8f9fa;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 86, 179, 0.05) 100%);
  z-index: 1;
}

.cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 1.5rem;
  color: #212529;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.cta h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #007BFF;
}

.cta p {
  margin: 0 auto 2.5rem;
  color: #6c757d;
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.7;
}

/* Button Styles */
.btn {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0056b3;
  transition: all 0.3s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn:hover::before {
  width: 100%;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .hero h2 {
    font-size: 2rem;
  }
  
  .cta {
    padding: 3rem 1rem;
  }
  
  .cta h2 {
    font-size: 1.8rem;
  }
  
  .cta p {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}
  
  .intro strong {
    color: #212529;
    font-weight: bold;
  }
  
  /* Lábléc */
  footer {
    background-color: #212529;
    color: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
  /* Szolgáltatások*/
  .services-list {
    background-color: #f1f1f1;
    padding: 3rem 1rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }

  .service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
    padding: 2rem;
    background: #007bff;
    color: white;
    text-align: center;
  }

  .service-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h3 {
    color: #212529;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .service-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Referenciák */
  .references {
    padding: 3rem 1rem;
    background-color: #fff;
  }

  .references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }

  .reference-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }

  .reference-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .reference-card:hover .reference-image {
    transform: scale(1.05);
  }

  .reference-content {
    padding: 1.5rem;
  }

  .reference-content h3 {
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 0.8rem;
    font-weight: 600;
  }

  .reference-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
  }
  
  /* Kapcsolat */
  .contact-form {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: auto;
    margin-bottom: 3rem;
  }
  
  form label {
    font-weight: bold;
  }
  
  form input,
  form select,
  form textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-details {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .contact-details h3 {
    color: #007BFF;
    margin-bottom: 1rem;
  }
  
  .map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Reszponzív */
  @media (max-width: 768px) {
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav ul {
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .btn {
      width: 100%;
      max-width: 300px;
      display: inline-block;
    }

  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
      padding: 1rem 0;
    }
    
    .hero h2 {
      font-size: 2rem;
    }
    
    .hero p {
      font-size: 1.1rem;
    }
    
    .btn {
      width: 100%;
      max-width: 300px;
      display: inline-block;
    }
  }