      :root {
        --primary: #19b5b0;
        --primary-dark: #148f8b;
        --primary-light: #e8f8f7;
        --secondary: #f5b819;
        --secondary-dark: #d9a316;
        --dark: #2d3436;
        --dark-light: #636e72;
        --light: #f8f9fa;
        --white: #ffffff;
        --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
        --radius: 8px;
        --radius-lg: 16px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: var(--dark);
        background: var(--white);
        overflow-x: hidden;
      }
      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        line-height: 1.2;
      }
      a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition);
      }
      img {
        max-width: 100%;
        height: auto;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .section-label {
        display: inline-block;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--secondary);
        margin-bottom: 15px;
      }
      .section-title {
        font-size: clamp(1.8rem, 5vw, 2.8rem);
        color: var(--primary);
        margin-bottom: 20px;
        position: relative;
      }
      .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--primary);
        margin-top: 20px;
        border-radius: 2px;
      }
      .section-title.centered::after {
        margin-left: auto;
        margin-right: auto;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: var(--radius);
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid transparent;
        gap: 10px;
      }
      .btn-contact {
        background: var(--secondary);
        color: var(--dark);
        font-weight: 700;
        padding: 12px 24px;
        font-size: 0.9rem;
      }
      .btn-contact:hover {
        background: var(--secondary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 184, 25, 0.4);
      }
      .b2b-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
        color: var(--white);
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
      }
      .b2b-badge svg {
        width: 14px;
        height: 14px;
      }

      /* HEADER */
      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        transition: var(--transition);
      }
      header.scrolled {
        box-shadow: var(--shadow);
      }
      .header-top {
        background: var(--dark);
        color: var(--white);
        padding: 8px 0;
        font-size: 0.8rem;
      }
      .header-top-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
      }
      .header-top-left {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .header-top-item {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .header-top-item svg {
        width: 14px;
        height: 14px;
        color: var(--primary);
        flex-shrink: 0;
      }
      .header-main {
        padding: 12px 0;
      }
      .header-main-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .logo-icon {
        width: 50px;
        height: 50px;
        background: var(--primary-light);
        border: 2px solid var(--primary);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        flex-shrink: 0;
      }
      .logo-icon svg {
        width: 100%;
        height: 100%;
        color: var(--primary);
      }
      .logo-text h1 {
        font-size: clamp(1rem, 2vw, 1.4rem);
        color: var(--dark);
        letter-spacing: -0.5px;
      }
      .logo-text span {
        font-size: 0.7rem;
        color: var(--dark-light);
        letter-spacing: 0.5px;
        text-transform: uppercase;
      }
      nav {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-links {
        display: flex;
        list-style: none;
        gap: 5px;
      }
      .nav-links a {
        display: block;
        padding: 10px 16px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--dark);
        border-radius: var(--radius);
      }
      .nav-links a:hover,
      .nav-links a.active {
        color: var(--primary);
        background: var(--primary-light);
      }
      .nav-cta {
        margin-left: 15px;
      }
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
      }
      .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark);
        margin: 5px 0;
        border-radius: 2px;
        transition: var(--transition);
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 120px;
        padding-bottom: 60px;
        background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
        position: relative;
        overflow: hidden;
      }
      .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 150%;
        background: linear-gradient(
          135deg,
          var(--primary-light) 0%,
          transparent 70%
        );
        border-radius: 50%;
        z-index: 0;
      }
      .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
      }
      .hero-text {
        animation: fadeInUp 0.8s ease-out;
      }
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-text .b2b-badge {
        margin-bottom: 25px;
      }
      .hero-text h2 {
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: var(--primary);
        margin-bottom: 25px;
        line-height: 1.1;
      }
      .hero-text h2 span {
        color: var(--dark);
      }
      .hero-text p {
        font-size: 1.1rem;
        color: var(--dark-light);
        max-width: 500px;
      }
      .hero-image {
        position: relative;
        animation: fadeInRight 0.8s ease-out 0.2s both;
      }
      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translateX(30px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }
      .hero-image-wrapper {
        position: relative;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
      }
      .hero-image-wrapper::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border: 4px solid var(--secondary);
        border-radius: var(--radius-lg);
        z-index: -1;
      }
      .hero-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
      }
      .hero-stats {
        position: absolute;
        bottom: -30px;
        left: -30px;
        display: flex;
        gap: 15px;
      }
      .stat-card {
        background: var(--white);
        padding: 18px 22px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        text-align: center;
      }
      .stat-card strong {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary);
      }
      .stat-card span {
        font-size: 0.8rem;
        color: var(--dark-light);
      }

      /* SERVICES */
      .services {
        padding: 100px 0;
        background: var(--white);
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 50px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
      }
      .service-card {
        padding: 40px 30px;
        text-align: left;
        transition: var(--transition);
        position: relative;
      }
      .service-card:nth-child(1) {
        background: var(--primary);
        color: var(--white);
      }
      .service-card:nth-child(2) {
        background: var(--primary-dark);
        color: var(--white);
      }
      .service-card:nth-child(3) {
        background: #0d8a86;
        color: var(--white);
      }
      .service-card:nth-child(4) {
        background: var(--secondary);
        color: var(--dark);
      }
      .service-card:hover {
        transform: translateY(-10px);
      }
      .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
      }
      .service-icon svg {
        width: 100%;
        height: 100%;
        stroke-width: 1.5;
      }
      .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
      }
      .service-card h3::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: currentColor;
        margin-top: 12px;
        opacity: 0.5;
      }
      .service-card p {
        font-size: 0.9rem;
        line-height: 1.7;
        opacity: 0.9;
      }

      /* ABOUT */
      .about {
        padding: 100px 0;
        background: var(--light);
      }
      .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .about-image-main {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        border: 5px solid var(--secondary);
      }
      .about-image-main img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        display: block;
      }
      .about-text p {
        color: var(--dark-light);
        margin-bottom: 20px;
        font-size: 1rem;
      }
      .about-features {
        margin-top: 35px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .about-feature {
        display: flex;
        gap: 15px;
        align-items: flex-start;
      }
      .about-feature-icon {
        flex-shrink: 0;
        width: 55px;
        height: 55px;
        background: var(--primary-light);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .about-feature-icon svg {
        width: 28px;
        height: 28px;
        color: var(--primary);
      }
      .about-feature h3 {
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 5px;
      }
      .about-feature p {
        font-size: 0.9rem;
        margin-bottom: 0;
      }

      /* ADDITIONAL SERVICES */
      .additional-services {
        padding: 100px 0;
        background: var(--light);
      }
      .additional-services .container {
        text-align: center;
      }
      .additional-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 50px;
      }
      .additional-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
      }
      .additional-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
      }
      .additional-card-image {
        height: 200px;
        overflow: hidden;
      }
      .additional-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }
      .additional-card:hover .additional-card-image img {
        transform: scale(1.05);
      }
      .additional-card-content {
        padding: 25px;
        text-align: left;
      }
      .additional-card h3 {
        font-size: 1.2rem;
        color: var(--dark);
        margin-bottom: 12px;
      }
      .additional-card p {
        color: var(--dark-light);
        font-size: 0.9rem;
        margin-bottom: 15px;
      }
      .additional-card a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.9rem;
      }
      .additional-card a:hover {
        gap: 12px;
      }
      .additional-card a svg {
        width: 18px;
        height: 18px;
      }

      /* PARTNERS */
      .partners {
        padding: 60px 0;
        background: var(--white);
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
      }
      .partners-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
      }
      .partner-logo {
        height: 50px;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: var(--transition);
      }
      .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
      }

      /* CONTACT */
      .contact {
        padding: 80px 0;
        background: var(--white);
      }
      .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        align-items: start;
      }
      .contact-info h2 {
        margin-bottom: 25px;
      }
      .contact-info > p {
        color: var(--dark-light);
        font-size: 1rem;
        margin-bottom: 30px;
      }
      .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .contact-item {
        display: flex;
        gap: 15px;
        align-items: flex-start;
      }
      .contact-item-icon {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
        background: var(--primary-light);
        border-radius: var(--radius);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .contact-item-icon svg {
        width: 22px;
        height: 22px;
        color: var(--primary);
      }
      .contact-item h3 {
        font-size: 0.95rem;
        color: var(--dark);
        margin-bottom: 4px;
      }
      .contact-item p,
      .contact-item a {
        color: var(--dark-light);
        font-size: 0.9rem;
      }
      .contact-item a:hover {
        color: var(--primary);
      }
      .contact-map {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        height: 100%;
        min-height: 350px;
      }
      .contact-map iframe {
        width: 100%;
        height: 100%;
        min-height: 350px;
        border: none;
        display: block;
      }

      /* FOOTER */
      footer {
        background: var(--dark);
        color: var(--white);
        padding: 60px 0 25px;
      }
      .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
      }
      .footer-brand .logo {
        margin-bottom: 15px;
      }
      .footer-brand .logo-icon {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--primary);
      }
      .footer-brand .logo-text h1 {
        color: var(--white);
      }
      .footer-brand .logo-text span {
        color: rgba(255, 255, 255, 0.6);
      }
      .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.8;
      }
      .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 20px;
        position: relative;
      }
      .footer-column h3::after {
        content: '';
        display: block;
        width: 30px;
        height: 3px;
        background: var(--primary);
        margin-top: 10px;
      }
      .footer-column ul {
        list-style: none;
      }
      .footer-column ul li {
        margin-bottom: 10px;
      }
      .footer-column ul a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        transition: var(--transition);
      }
      .footer-column ul a:hover {
        color: var(--primary);
        padding-left: 5px;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
      }
      .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
      }
      .footer-bottom-links {
        display: flex;
        gap: 20px;
      }
      .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
      }
      .footer-bottom-links a:hover {
        color: var(--primary);
      }

      /* MOBILE MENU */
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        z-index: 2000;
        padding: 80px 25px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
      }
      .mobile-menu.active {
        right: 0;
      }
      .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
      }
      .mobile-menu-close svg {
        width: 28px;
        height: 28px;
        color: var(--dark);
      }
      .mobile-menu ul {
        list-style: none;
      }
      .mobile-menu ul li {
        margin-bottom: 8px;
      }
      .mobile-menu ul a {
        display: block;
        padding: 14px;
        font-family: 'Montserrat', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark);
        border-radius: var(--radius);
      }
      .mobile-menu ul a:hover {
        background: var(--primary-light);
        color: var(--primary);
      }
      .mobile-menu .btn {
        width: 100%;
        margin-top: 20px;
      }
      .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }
      .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /* BREADCRUMB (for inner pages) */
      .breadcrumb {
        padding: 15px 0;
        font-size: 0.85rem;
        color: var(--dark-light);
      }
      .breadcrumb a {
        color: var(--primary);
      }
      .breadcrumb a:hover {
        text-decoration: underline;
      }
      .breadcrumb span {
        margin: 0 8px;
        color: var(--dark-light);
      }

      /* INNER PAGE CONTENT */
      .page-hero {
        padding: 140px 0 60px;
        background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
      }
      .page-hero h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        color: var(--primary);
        margin-bottom: 15px;
      }
      .page-hero p {
        font-size: 1.1rem;
        color: var(--dark-light);
        max-width: 700px;
      }
      .page-content {
        padding: 60px 0;
      }
      .page-content h2 {
        font-size: 1.6rem;
        color: var(--primary);
        margin: 40px 0 15px;
      }
      .page-content h3 {
        font-size: 1.2rem;
        color: var(--dark);
        margin: 25px 0 10px;
      }
      .page-content p {
        color: var(--dark-light);
        margin-bottom: 15px;
        font-size: 1rem;
        max-width: 800px;
      }
      .page-content ul, .page-content ol {
        padding-left: 25px;
        margin-bottom: 15px;
        color: var(--dark-light);
      }
      .page-content li {
        margin-bottom: 8px;
      }

      /* CTA SECTION (for inner pages) */
      .cta-section {
        padding: 60px 0;
        background: var(--primary);
        color: var(--white);
        text-align: center;
      }
      .cta-section h2 {
        color: var(--white);
        margin-bottom: 15px;
      }
      .cta-section p {
        color: rgba(255,255,255,0.9);
        margin-bottom: 25px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
      }
      .cta-section .btn {
        background: var(--secondary);
        color: var(--dark);
        font-weight: 700;
      }
      .cta-section .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 184, 25, 0.4);
      }

      /* RESPONSIVE TABLET */
      @media (max-width: 1024px) {
        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-content {
          grid-template-columns: repeat(2, 1fr);
        }
        .hero-content {
          gap: 40px;
        }
        .hero-image img {
          height: 380px;
        }
        .about-image-main img {
          height: 380px;
        }
        .partners-content {
          justify-content: center;
        }
      }
      @media (max-width: 900px) {
        .hero-content {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .hero-text p {
          margin-left: auto;
          margin-right: auto;
        }
        .hero-image {
          order: -1;
          max-width: 500px;
          margin: 0 auto;
        }
        .hero-stats {
          position: relative;
          bottom: auto;
          left: auto;
          justify-content: center;
          margin-top: 25px;
        }
        .hero-image-wrapper::before {
          display: none;
        }
        .about-content {
          grid-template-columns: 1fr;
        }
        .about-image {
          max-width: 500px;
          margin: 0 auto;
        }
        .contact-content {
          grid-template-columns: 1fr;
        }
        .contact-map {
          min-height: 300px;
        }
        .additional-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .nav-links {
          display: none;
        }
        .nav-cta {
          margin-left: 0;
        }
        .mobile-menu-btn {
          display: block;
        }
      }

      /* RESPONSIVE MOBILE */
      @media (max-width: 650px) {
        .header-top {
          padding: 8px 0;
        }
        .header-top-content {
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          gap: 10px;
        }
        .header-top-left {
          flex-direction: row;
          gap: 0;
          width: auto;
        }
        .header-top-item:nth-child(2),
        .header-top-item:nth-child(3) {
          display: none;
        }
        .header-top-item {
          font-size: 0.75rem;
        }
        .b2b-badge {
          font-size: 0.6rem;
          padding: 5px 10px;
          white-space: nowrap;
        }
        .header-main {
          padding: 8px 0;
        }
        .logo {
          gap: 8px;
        }
        .logo-img {
          height: 40px !important;
        }
        .logo-text h1 {
          font-size: 1rem;
        }
        .logo-text span {
          font-size: 0.55rem;
          display: block;
          line-height: 1.2;
        }
        .btn-contact {
          padding: 8px 12px;
          font-size: 0.75rem;
        }
        .btn-contact svg {
          display: none;
        }
        .hero {
          padding-top: 140px;
          padding-bottom: 40px;
          min-height: auto;
        }
        .hero::before {
          display: none;
        }
        .hero-text h2 {
          font-size: 1.6rem;
          line-height: 1.3;
        }
        .hero-text h2 span {
          font-size: 1.4rem;
        }
        .hero-text p {
          font-size: 0.95rem;
          line-height: 1.6;
        }
        .hero-text .b2b-badge {
          margin-bottom: 15px;
        }
        .hero-image img {
          height: 240px;
          object-fit: cover;
          border-radius: var(--radius);
        }
        .hero-image-wrapper {
          box-shadow: var(--shadow);
        }
        .hero-image-wrapper::before {
          display: none;
        }
        .hero-stats {
          position: relative;
          bottom: auto;
          left: auto;
          justify-content: center;
          margin-top: 20px;
        }
        .stat-card {
          padding: 12px 20px;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }
        .stat-card strong {
          font-size: 1.4rem;
        }
        .stat-card span {
          font-size: 0.7rem;
        }
        .services {
          padding: 50px 0;
        }
        .services-grid {
          grid-template-columns: 1fr;
          border-radius: var(--radius);
        }
        .service-card {
          padding: 30px 20px;
        }
        .service-card:hover {
          transform: none;
        }
        .service-icon {
          width: 45px;
          height: 45px;
        }
        .service-card h3 {
          font-size: 1.1rem;
        }
        .about {
          padding: 50px 0;
        }
        .about-image-main img {
          height: 250px;
        }
        .about-features {
          gap: 15px;
        }
        .about-feature {
          gap: 12px;
        }
        .about-feature-icon {
          width: 44px;
          height: 44px;
        }
        .about-feature-icon svg {
          width: 22px;
          height: 22px;
        }
        .about-feature h3 {
          font-size: 0.95rem;
        }
        .about-feature p {
          font-size: 0.85rem;
        }
        .additional-services {
          padding: 50px 0;
        }
        .additional-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .additional-card-image {
          height: 160px;
        }
        .additional-card-content {
          padding: 18px;
        }
        .additional-card:hover {
          transform: none;
        }
        .partners {
          padding: 35px 0;
        }
        .partners-content {
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
        }
        .partner-logo {
          height: 35px;
          flex: 0 0 calc(33% - 15px);
          object-fit: contain;
        }
        .contact {
          padding: 50px 0;
        }
        .contact-details {
          gap: 15px;
        }
        .contact-item {
          gap: 12px;
        }
        .contact-item-icon {
          width: 40px;
          height: 40px;
        }
        .contact-item-icon svg {
          width: 20px;
          height: 20px;
        }
        .contact-map {
          min-height: 220px;
          border-radius: var(--radius);
        }
        footer {
          padding: 40px 0 20px;
        }
        .footer-content {
          grid-template-columns: 1fr 1fr;
          gap: 25px;
          text-align: left;
        }
        .footer-brand {
          grid-column: 1 / -1;
          text-align: center;
        }
        .footer-brand .logo {
          justify-content: center;
        }
        .footer-column h3 {
          font-size: 0.9rem;
          margin-bottom: 12px;
        }
        .footer-column h3::after {
          margin-top: 8px;
          width: 25px;
          height: 2px;
        }
        .footer-column ul a {
          font-size: 0.85rem;
        }
        .footer-column ul li {
          margin-bottom: 8px;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
          gap: 10px;
          margin-top: 20px;
          padding-top: 20px;
        }
        .footer-bottom p {
          font-size: 0.75rem;
        }
        .footer-bottom-links {
          flex-wrap: wrap;
          justify-content: center;
          gap: 12px;
        }
        .footer-bottom-links a {
          font-size: 0.75rem;
        }
        .btn {
          padding: 10px 18px;
          font-size: 0.85rem;
        }
        .section-title {
          font-size: 1.5rem;
        }
        .section-title::after {
          width: 40px;
          height: 3px;
          margin-top: 12px;
        }
        .section-label {
          font-size: 0.75rem;
          letter-spacing: 1.5px;
        }
        /* Inner pages mobile */
        .page-hero {
          padding: 120px 0 40px;
        }
        .page-hero h1 {
          font-size: 1.5rem;
        }
        .page-content {
          padding: 40px 0;
        }
      }
      @media (max-width: 400px) {
        .container {
          padding: 0 15px;
        }
        .hero-text h2 {
          font-size: 1.5rem;
        }
        .logo {
          gap: 8px;
        }
        .logo-icon {
          width: 38px;
          height: 38px;
        }
        .logo-text h1 {
          font-size: 1rem;
        }
        .hero-stats {
          flex-wrap: wrap;
        }
        .stat-card {
          flex: 1;
          min-width: 120px;
        }
      }
