    :root {
      --primary-blue: #1e293b;
      --accent-green: #22c55e;
      --accent-green-light: #22e76a;
      --accent-green-dark: #03c54a;
      --footer-bg: #1e293b;
      --white: #fff;
      --gray-light: #cbd5e1;
      --bg: #f6f3f3;
      --font-main: 'Inter', Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      background: var(--bg);
      min-height: 100vh;
      font-family: var(--font-main);
      color: var(--primary-blue);
      overflow-x: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header Styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 15px 0;
      border-bottom: 1px solid rgba(44, 62, 80, 0.1);
      transition: all 0.3s ease;
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    

    logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 38px;
      margin-right: 12px;
      display: block;
    }
    
    /* Navigation Styles */
    .navigation {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .nav-list {
      display: flex;
      list-style: none;
      gap: 3rem;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .nav-link {
      text-decoration: none;
      color: #64748b;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #22c55e;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #22c55e;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    /* Hamburger Menu */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--primary-blue);
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Mobile Navigation */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: white;
      z-index: 1000;
      padding: 100px 30px 30px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav.active {
      right: 0;
    }

    .mobile-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-nav-list li {
      margin: 20px 0;
    }

    .mobile-nav-list a {
      display: block;
      text-decoration: none;
      color: var(--primary-blue);
      font-weight: 500;
      font-size: 18px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .mobile-nav-list a:hover,
    .mobile-nav-list a.active {
      color: var(--accent-green);
      padding-left: 10px;
    }

    .mobile-cta {
      margin-top: 40px;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }
      @media (max-width: 768px) {
  .navigation {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

    /* Button Styles */
    .btn {
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 16px;
      font-family: inherit;
    }

    .btn-primary {
      background: #22c55e;
      color: white;
      border: 2px solid #22c55e;
    }

    .btn-primary:hover {
      background: #16a34a;
      border-color: #16a34a;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .header-cta .btn {
      padding: 12px 24px;
      font-size: 14px;
    }
main {
      padding-top: 88px;
      min-height: 100vh;
    }

    /* Services Section */
    .services-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 20px 0;
    }
    .services-title {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--primary-blue);
      margin-bottom: 44px;
      text-transform: uppercase;
      letter-spacing: 0.01em;
    }
    .service-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 38px;
      margin-bottom: 56px;
    }
    .service-card {
      background: var(--white);
      border-radius: 16px;
      box-shadow: 0 6px 24px rgba(30,41,59,0.11);
      padding: 30px 28px 30px 36px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      transition: box-shadow 0.2s;
      border-left: 7px solid var(--accent-green);
    }
    .service-card:hover {
      box-shadow: 0 12px 40px rgba(34,197,94, 0.13);
    }
    .service-title {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--primary-blue);
      margin-bottom: 0.8rem;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }
    .service-description {
      color: var(--primary-blue);
      font-size: 1.07rem;
      line-height: 1.7;
      margin-bottom: 0.8rem;
      font-weight: 400;
    }
    .service-list {
      margin: 0.5rem 0 0 0;
      padding-left: 1.4rem;
    }
    .service-list li {
      color: var(--primary-blue);
      font-size: 1.03rem;
      margin-bottom: 4px;
    }
    /* CTA Section */
    .services-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--accent-green-light) 0%, var(--accent-green-dark) 100%);
      border-radius: 16px;
      padding: 2.5rem 2.5rem 2.2rem 2.5rem;
      margin-top: 34px;
      margin-bottom: 36px;
      box-shadow: 0 6px 24px rgba(34,197,94,0.13);
    }
    .cta-title {
      color: var(--primary-blue);
      font-size: 1.85rem;
      font-weight: 700;
      margin-bottom: 1.2rem;
      letter-spacing: 0.01em;
      text-align: center;
      text-transform: uppercase;
    }
    .cta-buttons {
      display: flex;
      gap: 1.2rem;
      margin-top: 0.7rem;
      flex-wrap: wrap;
    }
    .cta-buttons button {
      background: var(--primary-blue);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 12px 28px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.22s;
    }
    .cta-buttons button:hover {
      background: #0f172a;
    }

    /* Footer */
    .footer {
      background: var(--footer-bg);
      color: white;
      padding: 4rem 0 2rem;
    }
    .footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 28px;
    }
    .footer-info {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
      align-items: flex-start;
    }
    .footer-logo-section {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      grid-column: 1 / 2;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    .footer-logo img {
      height: 44px;
      width: auto;
      border-radius: 6px;
      margin-right: 14px;
      background: none;
      padding: 3px;
    }
    .footer-logo .logo-text,
    .footer-logo-section .logo-text {
      color: white;
      font-size: 1.2rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.01em;
    }
    .footer-logo-section p {
      color: var(--gray-light);
      font-size: 1rem;
      line-height: 1.6;
      font-weight: 400;
      margin-bottom: 0;
    }
    .footer-section h3 {
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--accent-green);
    }
    .footer-section ul {
      list-style: none;
      padding: 0;
    }
    .footer-section ul li {
      margin-bottom: 0.5rem;
    }
    .footer-section ul li a {
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 400;
    }
    .footer-section ul li a:hover {
      color: var(--accent-green);
    }
    .contact-info p {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: var(--gray-light);
      font-weight: 400;
    }
    .contact-info i {
      color: var(--accent-green);
      width: 16px;
    }
    .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p {
      color: var(--gray-light);
      font-weight: 400;
    }
    .footer-links {
      display: flex;
      gap: 2rem;
    }
    .footer-links a {
      color: var(--gray-light);
      text-decoration: none;
      transition: color 0.3s ease;
      font-weight: 400;
    }
    .footer-links a:hover {
      color: var(--accent-green);
    }
    /* Responsive */
    @media (max-width: 1050px) {
      .services-section, .footer .container {
        padding-left: 6vw; padding-right: 6vw;
      }
      .footer-info {
        gap: 1.4rem;
      }
    }
    @media (max-width: 950px) {
      .footer-info {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }
      .service-cards {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 700px) {
      nav {
        padding: 0 16px;
        height: 54px;
      }
      .logo img { height: 29px;}
      .logo-text { font-size: 1.07rem;}
      .nav-links { gap: 10px;}
      .nav-cta button { font-size: 0.94rem; padding: 11px 18px;}
      .services-section { 
        padding-left: 3vw; padding-right:3vw;
      }
      .services-title { font-size: 1.3rem; }
      .service-title { font-size: 1.06rem; }
      .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
      }
      .footer-logo-section, .footer-logo {
        align-items: center;
        justify-content: center;
      }
      .footer-logo-section {
        margin-bottom: 2rem;
      }
      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }
    @media (max-width: 480px) {
      .services-cta { padding: 1.4rem; }
      .services-title { font-size: 1.05rem; }
      .footer .container {
        padding: 0 10px;
      }
    }

    @media (max-width: 768px) {  
  .contact-info p {
    justify-content: center;
    }
  .contact-info a {
    color:#ffffff
    }
}