    a { 
      text-decoration: none;
      color: white;
    }
    * {
      font-family: 'Vazirmatn', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f8f9fa;
    }

    /* Header Top Section */
    .header-top {
      background-color: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .logo img {
      height: 100px;
    }

    .search-box {
      position: relative;
      width: 100%;
      max-width: 420px;
    }

    .search-box input {
      width: 100%;
      border: 1.5px solid #6fc1a1;
      border-radius: 30px;
      padding: 10px 45px 10px 15px;
      font-size: 0.95rem;
      outline: none;
    }

    .search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6fc1a1;
    }

    .header-buttons .btn {
      border-radius: 30px;
      padding: 8px 20px;
      font-weight: 500;
    }

    .btn-install {
      background-color: #6fc1a1;
      color: #fff;
      transition: 0.3s;
    }

    .btn-install:hover {
      background-color: #5cb08d;
    }

    .btn-call {
      border: 1.5px solid #6fc1a1;
      color: #6fc1a1;
      transition: 0.3s;
    }

    .btn-call:hover {
      background-color: #6fc1a1;
      color: #fff;
    }

    /* Navbar */
    .main-nav {
      background-color: #fff;
      border-top: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 10px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
    }

    .main-nav ul li a {
      color: #003366;
      font-weight: 500;
      transition: 0.3s;
      text-decoration: none;
    }

    .main-nav ul li a:hover {
      color: #6fc1a1;
    }

    .main-nav ul li a.active {
      color: #6fc1a1;
      font-weight: 600;
    }

    /* Mobile Header */
    .mobile-header {
      display: none;
      background-color: #fff;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: relative;
    }

    .mobile-header-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 15px;
    }

.mobile-logo img {
  height: 80px;
  width: auto;
  max-width: 200px;
}

    .mobile-menu-btn {
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #003366;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .mobile-menu-btn:hover {
      background-color: #f0f0f0;
    }

    .mobile-search-box {
      position: relative;
      margin: 10px 15px;
    }

    .mobile-search-box input {
      width: 100%;
      border: 1.5px solid #6fc1a1;
      border-radius: 30px;
      padding: 10px 45px 10px 15px;
      font-size: 0.95rem;
      outline: none;
    }

    .mobile-search-box i {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #6fc1a1;
    }

    /* Mobile Navigation Menu */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: #fff;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 1000;
      overflow-y: auto;
      transition: transform 0.3s ease;
      transform: translateX(100%);
    }

    .mobile-nav.active {
      transform: translateX(0);
      display: block;
    }

    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      border-bottom: 1px solid #eee;
      background-color: #003366;
      color: white;
    }

    .mobile-nav-header .logo-text {
      font-weight: 700;
      font-size: 1.1rem;
    }

    .mobile-nav-close {
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s;
    }

    .mobile-nav-close:hover {
      background-color: rgba(255,255,255,0.2);
    }

    .mobile-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .mobile-nav ul li {
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav ul li:last-child {
      border-bottom: none;
    }

    .mobile-nav ul li a {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      color: #003366;
      font-weight: 500;
      text-decoration: none;
      transition: 0.3s;
    }

    .mobile-nav ul li a i {
      margin-left: 10px;
      color: #6fc1a1;
      width: 20px;
      text-align: center;
    }

    .mobile-nav ul li a:hover {
      background-color: #f9f9f9;
      color: #6fc1a1;
    }

    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      z-index: 999;
    }

    .mobile-nav-overlay.active {
      display: block;
    }

    /* Page Header */
    .page-header {
      background: linear-gradient(135deg, #6fc1a1 0%, #0f766e 100%);
      color: white;
      padding: 60px 0;
      text-align: center;
      margin-bottom: 50px;
    }

    .page-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .page-header p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
      opacity: 0.9;
    }

    /* Contact Section */
    .contact-section {
      padding: 50px 0;
    }

    .contact-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      padding: 30px;
      margin-bottom: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      text-align: center;
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    }

    .contact-icon {
      width: 70px;
      height: 70px;
      background: #e8f5f0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: #0f766e;
      font-size: 1.8rem;
    }

    .contact-card h3 {
      color: #003366;
      margin-bottom: 15px;
      font-size: 1.4rem;
    }

    .contact-card p {
      color: #555;
      margin-bottom: 10px;
      line-height: 1.6;
    }

    .contact-link {
      color: #0f766e;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    .contact-link:hover {
      color: #6fc1a1;
    }

    /* Contact Form */
    .contact-form-container {
      background: white;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      padding: 40px;
      margin-top: 30px;
    }

    .contact-form-container h2 {
      color: #003366;
      margin-bottom: 25px;
      text-align: center;
      font-size: 1.8rem;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-label {
      display: block;
      margin-bottom: 8px;
      color: #003366;
      font-weight: 500;
    }

    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .form-control:focus {
      border-color: #6fc1a1;
      outline: none;
      box-shadow: 0 0 0 2px rgba(111, 193, 161, 0.2);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }

    .submit-btn {
      background: #0f766e;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 14px 30px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s;
      width: 100%;
      margin-top: 10px;
    }

    .submit-btn:hover {
      background: #6fc1a1;
    }

    /* Map Section */
    .map-section {
      margin-top: 60px;
      margin-bottom: 30px;
    }

    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      height: 400px;
    }

    .map-placeholder {
      background: #e8f5f0;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0f766e;
      font-size: 1.2rem;
      text-align: center;
      padding: 20px;
    }

    /* FAQ Section */
    .faq-section {
      margin-top: 60px;
      margin-bottom: 30px;
    }

    .faq-title {
      text-align: center;
      color: #003366;
      margin-bottom: 40px;
      font-size: 1.8rem;
    }

    .faq-item {
      background: white;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
      margin-bottom: 15px;
      overflow: hidden;
    }

    .faq-question {
      padding: 20px;
      background: #f8f9fa;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 500;
      color: #003366;
      transition: background 0.3s;
    }

    .faq-question:hover {
      background: #e8f5f0;
    }

    .faq-question i {
      transition: transform 0.3s;
    }

    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      padding: 20px;
      max-height: 500px;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    /* Footer Styles */
    footer {
      background-color: #ffffff;
      border-top: 1px solid #e5e7eb;
      color: #4b5563;
      padding: 60px 20px 30px;
      text-align: left;
      direction: ltr;
      margin-top: 60px;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer-flex-row {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 50px;
    }

    .footer-col {
      flex: 1 1 200px;
      min-width: 180px;
    }

    .footer-col h4 {
      color: #0f766e;
      font-size: 16px;
      margin-bottom: 18px;
      text-align: left;
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      text-align: left;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      text-decoration: none;
      color: #4b5563;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #0f766e;
    }

    .social {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
    }

    .social a {
      font-size: 22px;
      color: #6b7280;
      transition: color 0.3s;
    }

    .social a:hover {
      color: #0f766e;
    }

    .newsletter {
      margin-top: 30px;
    }

    .newsletter p {
      margin-bottom: 10px;
      font-size: 15px;
      color: #374151;
      text-align: left;
    }

    .newsletter-form {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      max-width: 350px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      text-align: left;
    }

    .newsletter-form button {
      background-color: #0f766e;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 10px 25px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s;
    }

    .newsletter-form button:hover {
      background-color: #115e57;
    }

    .trust-badge {
      text-align: center;
      margin-top: 50px;
    }

    .trust-badge img {
      width: 110px;
      height: auto;
      border-radius: 8px;
      border: 1px solid #d1d5db;
    }

    .footer-bottom {
      border-top: 1px solid #e5e7eb;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
      font-size: 13px;
      color: #6b7280;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .header-top, .main-nav {
        display: none;
      }
      
      .mobile-header {
        display: block;
      }
      
      .header-buttons {
        margin-top: 10px;
      }

      .search-box {
        max-width: 100%;
      }

      .logo {
        text-align: center;
      }

      .page-header {
        padding: 40px 0;
      }

      .page-header h1 {
        font-size: 2rem;
      }

      .page-header p {
        font-size: 1rem;
      }

      .contact-card {
        padding: 20px;
      }

      .contact-form-container {
        padding: 25px;
      }

      .footer-flex-row {
        flex-direction: column;
        text-align: left;
        gap: 40px;
      }

      .newsletter-form {
        flex-direction: column;
        align-items: stretch;
      }

      .newsletter-form input {
        width: 100%;
      }

      .newsletter-form button {
        width: 100%;
      }
    }

    @media (max-width: 576px) {
      .page-header h1 {
        font-size: 1.7rem;
      }

      .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
      }

      .contact-card h3 {
        font-size: 1.2rem;
      }

      .contact-form-container h2 {
        font-size: 1.5rem;
      }
    }