.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }

  /* Default desktop styling */
  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    /* Center container */
    padding: 0 20px;
    width: 100%;
  }

  .left-content {
    display: flex;
    align-items: center;
  }

  .logo img {
    height: 60px;
    width: auto;
    margin-right: 10px;
  }

  .brand-name {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .brand-name span {
    font-size: 18px;
    opacity: 0.5;
  }

  .register-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 20px;
    text-decoration: none;
    color: #222;
    font-family: 'Arial', sans-serif;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Soft black shadow */
    background-color: transparent;
  }

  .register-btn .btn-icon {
    height: 48px;
    width: 48px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  /* On hover: deepen the black shadow */
  .register-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    /* Deep rich black shadow */
    color: #000;
  }

  .register-btn:hover .btn-icon {
    transform: scale(1.08);
  }



  /* ✅ Responsive behavior for small screens */
  @media (max-width: 768px) {
    .navbar-container {
      margin: 0;
      /* Remove center alignment */
      max-width: 100%;
      /* Full width on mobile */
      padding: 0 15px;
      /* Slight padding for mobile */
    }

    .brand-name {
      font-size: 14px;
    }

    .brand-name span {
      font-size: 14px;
    }

    .register-btn .btn-icon {
      height: 30px;
      width: 30px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .register-btn {
      font-size: 12px;
    }
  }







  /* Add a subtle animation to the logo */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.05);
    }

    100% {
      transform: scale(1);
    }
  }

  .logo img:hover {
    animation: pulse 1s infinite;
  }

  .download-section {
    padding: 20px;
    font-family: 'Arial', sans-serif;
  }

  .download-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
  }

  .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-right: 20px;
    border: 2px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .app-info {
    flex: 1;
    min-width: 200px;
  }

  .app-name {
    font-size: 1.5em;
    margin: 0 0 10px 0;
  }

  .app-description {
    font-size: 0.9em;
    margin: 0 0 15px 0;
    color: #666;
  }

  .download-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    display: inline-block;
    transition: background-color 0.3s;
  }

  .download-btn:hover {
    background-color: #45a049;
  }

  .download-btn i {
    margin-right: 5px;
    color: white;
    font-size: 15px;
  }

  p1 {
    color: white;
    font-size: 15px;
  }

  .feature-list {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-top: 20px;
  }

  .feature-item {
    text-align: center;
    margin: 0 10px;
  }

  .feature-icon {
    font-size: 1.5em;
    margin-bottom: 5px;
  }

  .feature-item p {
    font-size: 0.8em;
    margin: 0;
    color: #666;
  }

  @media (max-width: 480px) {
    .download-container {
      flex-direction: column;
      text-align: center;
    }

    .app-icon {
      margin: 0 0 15px 0;
    }

    .feature-list {
      flex-wrap: wrap;
    }

    .feature-item {
      flex-basis: 33.33%;
      margin-bottom: 15px;
    }
  }

  body {
    background-color: #ffffff;
    /* White background */
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    /* Deep Blue for text */
    background-size: cover;
    background-attachment: fixed;
  }

  h1 {
    color: #e74c3c;
    /* Bold Red */
    font-size: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 50px;
  }

  .rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .rule-item {
    background: rgba(255, 255, 255, 0.8);
    /* Transparent white background */
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
    transition: transform 0.5s, background 0.5s, box-shadow 0.5s;
    border: 2px solid transparent;
    background-clip: padding-box;
  }

  .rule-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    /* Full opacity on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    /* Stronger shadow on hover */
    border-image: linear-gradient(45deg, #3498db, #e74c3c);
    border-image-slice: 1;
  }

  .rule-content {
    position: relative;
    z-index: 2;
  }

  .rule-number {
    font-size: 4rem;
    font-weight: 700;
    color: #3498db;
    /* Vibrant Blue */
    margin-bottom: 20px;
    opacity: 0.8;
    position: relative;
    z-index: 2;
  }

  .rule-title {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
  }

  .rule-description {
    font-size: 1rem;
    color: #7f8c8d;
    /* Soft Gray */
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 2;
  }

  .rule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(231, 76, 60, 0));
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.5s;
  }

  .rule-item:hover::before {
    opacity: 0.8;
  }

  .rule-item::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: #3498db;
    /* Vibrant Blue */
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s;
  }

  .rule-item:hover::after {
    width: 80px;
    height: 80px;
    bottom: -30px;
    right: -30px;
  }

  .rule-icon {
    font-size: 2rem;
    color: #e74c3c;
    /* Bold Red */
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.7;
    transition: transform 0.5s, opacity 0.5s;
  }

  .rule-item:hover .rule-icon {
    transform: rotate(360deg);
    opacity: 1;
  }

  #styled-footer {
    background-color: #ffffff;
    /* White background */
    padding: 30px 0;
    /* Padding on top and bottom */
    border-top: 2px solid #e0e0e0;
    /* Subtle border at the top */
    text-align: center;
    /* Center all text */
  }

  #footer-content {
    max-width: 900px;
    /* Maximum width of the footer content */
    margin: 0 auto;
    /* Center the container */
  }

  .powered-by {
    display: flex;
    /* Flexbox for aligning text and logo */
    align-items: center;
    /* Vertically center items */
    justify-content: center;
    /* Horizontally center items */
    margin-bottom: 15px;
    /* Space below the powered by section */
  }

  .powered-by span {
    font-size: 18px;
    /* Font size for "Powered by" text */
    color: #333;
    /* Dark grey text color */
    margin-right: 8px;
    /* Space between text and logo */
  }

  .footer-logo {
    width: 120px;
    /* Set logo width */
    height: auto;
    /* Maintain aspect ratio */
  }

  .footer-description p {
    font-size: 13px;
    /* Font size for the paragraph */
    color: #555;
    /* Dark grey text color */
    margin: 20px 0;
    /* Margin around paragraph */
  }

  .developer-credit {
    margin-top: 15px;
    /* Space above developer credit */
  }

  .developer-link {
    text-decoration: none;
    /* Remove underline from link */
    font-size: 15px;
  }

  .developer-link:hover {
    text-decoration: underline;
    /* Underline on hover */
  }

  .social-icons {
    margin-left: 10px;
    /* Space between developer name and social icons */
  }

  .social-icon img {
    width: 20px;
    /* Width of social media icons */
    height: auto;
    /* Maintain aspect ratio */
    margin-left: 5px;
    /* Space between each icon */
    transition: transform 0.3s;
    /* Smooth transition on hover */
  }

  .social-icon img:hover {
    transform: scale(1.1);
    /* Slightly enlarge icon on hover */
  }

  .ad-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .ad-slider {
    position: relative;
    width: 100%;
  }

  .ad-slide {
    display: none;
    width: 100%;
  }

  .ad-slide.active {
    display: block;
  }

  .ad-slide img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ad-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
  }

  .ad-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .ad-dot.active {
    background-color: white;
    width: 16px;
    height: 16px;
    border-color: transparent;
  }

  @media (max-width: 768px) {
    .ad-navigation {
      bottom: 10px;
    }

    .ad-slide img {
      width: 100%;
      height: 25vh;
      /* Full height of the screen */
      object-fit: cover;
      /* Ensures the image covers the full space */
    }
  }
  .search-container {
    max-width: 600px;
    margin: 20px auto;
    position: relative;
  }

  .search-input {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .search-input:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 3px 10px rgba(66, 133, 244, 0.15);
  }

  .search-input::placeholder {
    color: #9aa0a6;
  }

  /* Simple hover state */
  .search-input:hover {
    border-color: #d1d1d1;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .search-container {
      margin: 15px auto;
      max-width: 90%;
    }
  }

  /* Dark mode */
  @media (prefers-color-scheme: dark) {
    .search-input {
      background-color: #292929;
      border-color: #444444;
      color: #e8e8e8;
    }

    .search-input::placeholder {
      color: #888888;
    }

    .search-input:focus {
      border-color: #4285f4;
    }

    .search-input:hover {
      border-color: #555555;
    }
  }

  .suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
  }

  .suggestion-item:hover {
    background-color: #f0f0f0;
  }

  .suggestion-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 5px;
  }

  .suggestion-text {
    display: flex;
    flex-direction: column;
  }

  .suggestion-text .english-name {
    font-weight: bold;
  }

  .suggestion-text .bengali-name {
    font-size: 0.8em;
    color: #666;
  }



  /* Disable body scroll when popup is open */
  body.popup-open {
    overflow: hidden;
  }

  /* Overlay and body lock */
  body.popup-open {
    overflow: hidden;
  }

  .popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  /* Choice Box */
  .choice-box {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    position: relative;
    text-align: center;
    animation: scaleIn 0.4s ease;
  }

  .choice-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
  }

  .choice-btn {
    padding: 12px 20px;
    border: 2px solid #4e54c8;
    border-radius: 50px;
    font-weight: bold;
    background: #fff;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .choice-btn.filled {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
  }

  .choice-btn:hover {
    transform: scale(1.05);
  }

  body.popup-open {
    overflow: hidden;
  }

  .popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    justify-content: center;
    align-items: center;
  }

  .popup,
  .choice-box {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 460px;
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: scaleIn 0.3s ease-in-out;
  }

  .popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .popup-header img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 12px;
  }

  .popup-header .popup-brand {
    font-size: 20px;
    font-weight: 600;
  }

  .popup-header .popup-brand span {
    font-size: 13px;
    color: #666;
  }

  .close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    color: #444;
    cursor: pointer;
  }

  .choice-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
  }

  .choice-btn {
    padding: 12px 24px;
    border: 2px solid #4e54c8;
    border-radius: 50px;
    font-weight: bold;
    background: #fff;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .choice-btn.filled {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: #fff;
  }

  .choice-btn:hover {
    transform: scale(1.05);
  }

  .popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .popup-form input,
  .popup-form textarea {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
  }

  .popup-form textarea {
    resize: vertical;
  }

  .submit-btn {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
  }

  .submit-btn:hover {
    background: linear-gradient(135deg, #3b3fbb, #7b81fa);
  }

  /* Image Preview */
  .image-preview {
    display: flex;
    justify-content: center;
  }

  .image-preview img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #4e54c8;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  /* Animation */
  @keyframes scaleIn {
    from {
      transform: scale(0.9);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Overlay with blurred background */
  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
  }

  .overlay.show {
    display: block;
  }

  /* Profile popup container */
  .profile-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 90%;
    max-width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    animation: popupFade 0.3s ease forwards;
    transition: transform 0.3s ease;
  }

  .profile-popup.show {
    display: block;
    transform: translate(-50%, -50%) scale(1);
  }

  /* Smooth appearance animation */
  @keyframes popupFade {
    from {
      opacity: 0;
      transform: translate(-50%, -55%) scale(0.9);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  /* Close button style */
  .profile-popup .close-btn {
    text-align: right;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .profile-popup .close-btn:hover {
    color: #e74c3c;
  }

  /* Profile details section */
  .profile-popup .profile-details {
    margin-top: 10px;
    padding-right: 5px;
    max-height: 60vh;
    overflow-y: auto;
  }

  /* Scrollbar customization */
  .profile-popup .profile-details::-webkit-scrollbar {
    width: 6px;
  }

  .profile-popup .profile-details::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .profile-popup .profile-details div {
    margin-bottom: 12px;
    padding: 8px 10px;
    border-radius: 8px;
    background-color: #f0f0f0;
    font-weight: 500;
    color: #444;
  }

  /* Responsive tweaks */
  @media (max-width: 480px) {
    .profile-popup {
      padding: 20px 15px;
      border-radius: 12px;
    }

    .profile-popup .close-btn {
      font-size: 20px;
    }

    .profile-popup .profile-details div {
      font-size: 14px;
      padding: 6px 8px;
    }
  }

  .logout-btn {
    display: block;
    margin: 40px auto 0 auto;
    padding: 14px 40px;
    background: #ffffff;
    color: #0d0d0d;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border: 2px solid #0d0d0d;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  /* Unique hover effect */
  .logout-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    transition: all 0.4s ease;
    z-index: 0;
  }

  .logout-btn:hover::before {
    left: 0;
  }

  .logout-btn span {
    position: relative;
    z-index: 1;
  }

  .logout-btn:hover {
    color: #ffffff;
    border-color: #0d0d0d;
  }

  /* Click animation */
  .logout-btn:active {
    transform: scale(0.97);
  }

  /* Simple Policy Section Styles */
  .simple-policy {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    text-align: left;
    border: 1px solid #e9ecef;
    margin: 10px 0 20px 0;
  }

  .simple-policy h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .policy-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .policy-links {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
  }

  .policy-links a {
    color: #4a68f7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }

  .policy-links a:hover {
    color: #2d3748;
    text-decoration: underline;
  }

  .divider {
    color: #ccc;
    margin: 0 8px;
  }

  @media (max-width: 768px) {
    .simple-policy {
      padding: 15px;
    }

    .simple-policy h3 {
      font-size: 18px;
    }

    .policy-content p {
      font-size: 13px;
    }

    .policy-links a {
      font-size: 13px;
    }

    .divider {
      margin: 0 5px;
    }
  }

  /* Profile avatar area */
  .profile-info {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: background 0.3s;
  }

  .profile-info:hover {
    background: #f0f0f0;
  }

  .profile-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #eee;
    object-fit: cover;
  }
  a {
    text-decoration: none !important;
  }
  .category-views-icon {
      width: 35px !important;
      height: 35px !important;
      margin-right: 3px !important;
  }
  
  /* Enhanced Header Styles with Unique Typography */
  .enhanced-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 15px auto;
    padding: 12px 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .enhanced-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0ea5e9, #38bdf8);
  }
  
  .service-title-container {
    position: relative;
  }
  
  .service-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
  }
  
  .city-text {
    color: #1e293b;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    padding-right: 3px;
  }
  
  .city-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #1e293b;
    bottom: 0;
    left: 0;
  }
  
  .care-text {
    background: linear-gradient(90deg, #0284c7, #0ea5e9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
  
  .title-highlight {
    position: relative;
    color: #0ea5e9;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .title-highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 7px;
    background: rgba(14, 165, 233, 0.1);
    bottom: 3px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
  }
  
  .title-tagline {
    font-size: 13px;
    font-style: italic;
    color: #64748b;
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  

  
  .enhanced-hotline {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    border-right: 2px solid #e2e8f0;
    border-bottom: 2px solid #e2e8f0;
  }
  
  .enhanced-hotline::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #f8fafc;
  }
  
  .hotline-content {
    display: flex;
    flex-direction: column;
  }
  
  .hotline-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
  }
  
  .phone-number {
    color: #0f172a;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
  }
  
  .phone-number:hover {
    color: #0ea5e9;
  }
  
  .phone-number::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #0ea5e9;
    transition: width 0.3s ease;
  }
  
  .phone-number:hover::before {
    width: 100%;
  }
  
  /* Live Indicator Styles - Now Red */
  .live-indicator {
    display: flex;
    align-items: center;
    background-color: rgba(220, 38, 38, 0.1);
    border-radius: 30px;
    padding: 3px 8px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  }
  
  .live-dot {
    width: 8px;
    height: 8px;
    background-color: #dc2626;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    display: inline-block;
    animation: pulse-red 1.5s infinite;
  }
  
  @keyframes pulse-red {
    0% {
      box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
      box-shadow: 0 0 0 6px rgba(220, 38, 38, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
  }
  
  .live-text {
    color: #dc2626;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
  }
  
  /* Call Button Styles */
  .call-button {
    background: linear-gradient(145deg, #0ea5e9, #0284c7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(14, 165, 233, 0.4);
    position: relative;
    overflow: hidden;
  }
  
  .call-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 1;
    transition: all 0.6s ease;
    opacity: 0;
  }
  
  .call-button:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(10%, 10%);
  }
  
  .call-button img {
    filter: brightness(0) invert(1);
    position: relative;
    z-index: 2;
  }
  
  .call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(14, 165, 233, 0.5);
  }
  
  @media (max-width: 600px) {
    .enhanced-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      padding: 15px 20px;
    }
    
    .enhanced-hotline {
      width: 100%;
      justify-content: space-between;
    }
    
    
    
    .service-title {
      flex-wrap: wrap;
    }
  }

  /* Modern App Download Section Styles */
  .app-download-section {
    padding: 30px 15px;
    position: relative;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    border-radius: 16px;
    margin: 20px auto;
    max-width: 950px;
  }

  .app-showcase-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
  }

  .app-showcase-left {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .app-logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .app-logo {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: contain;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    background-color: white;
    padding: 10px;
    position: relative;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
  }

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

  .pulse-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .ring {
    position: absolute;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 30px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    animation: pulse-ring 3s linear infinite;
  }

  .ring1 { animation-delay: 0s; }
  .ring2 { animation-delay: 1s; }
  .ring3 { animation-delay: 2s; }

  @keyframes pulse-ring {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    20% {
      opacity: 0.6;
    }
    50% {
      opacity: 0.3;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }

  .app-showcase-right {
    flex: 2;
    min-width: 300px;
  }

  .app-info-content {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .app-title {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
    color: #2c3e50;
    display: inline-block;
    position: relative;
  }

  .app-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
  }

  .app-tagline {
    color: #7f8c8d;
    margin: 10px 0 20px;
    font-size: 16px;
    letter-spacing: 0.5px;
  }

  .app-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
  }

  .feature {
    font-size: 14px;
    color: #34495e;
    display: flex;
    align-items: center;
    margin-right: 15px;
  }

  .feature-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 8px;
  }

  .app-powered {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 20px;
  }

  .app-powered strong {
    color: #3498db;
    margin-left: 5px;
  }

  .app-download-button {
    display: inline-flex;
    align-items: center;
    background: #4CAF50;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
  }

  .app-download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
  }

  .download-icon {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
  }

  .download-text {
    position: relative;
    z-index: 2;
  }

  .download-arrow {
    margin-left: 10px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
  }

  .app-download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(76, 175, 80, 0.4);
    background: #45a049;
  }

  .app-download-button:hover .download-arrow {
    transform: translateX(4px);
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .app-showcase-container {
      flex-direction: column;
    }
    
    .app-showcase-left, .app-showcase-right {
      width: 100%;
      min-width: auto;
    }
    
    .app-logo {
      width: 100px;
      height: 100px;
    }
    
    .app-title {
      font-size: 24px;
    }
    
    .app-feature-list {
      flex-direction: column;
      gap: 10px;
    }
  }

  /* Simple App Download Section Styles */
  .simple-app-download {
    padding: 25px 20px;
    margin: 20px auto;
    max-width: 800px;
  }

  .app-promo-container {
    background-color: #f5f7fa;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .app-info-block {
    flex: 1;
    min-width: 250px;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .app-logo-simple {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 8px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    margin-bottom: 15px;
  }

  .app-name-simple {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
  }

  .app-desc-simple {
    font-size: 16px;
    color: #666;
    margin: 0;
  }

  .app-download-block {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .app-store-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.2s ease;
  }

  .android-store {
    background-color: #4285F4;
  }

  .apple-store {
    background-color: #333;
  }

  .store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }

  .store-text {
    font-size: 12px;
    line-height: 1.2;
  }

  .store-text strong {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
  }

  .app-store-btn:hover {
    transform: translateY(-2px);
  }

  .android-store:hover {
    background-color: #3367D6;
  }

  .apple-store:hover {
    background-color: #000;
  }

  @media (max-width: 650px) {
    .app-promo-container {
      flex-direction: column;
      text-align: center;
    }
    
    .app-info-block {
      padding-right: 0;
      margin-bottom: 20px;
    }
    
    .app-download-block {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
    }
  }

  /* Unique Orbit App Download Design */
  .orbit-app-promo {
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #0f0c29, #302b63, #24243e);
    margin: 40px auto;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 
      0 20px 50px rgba(15, 12, 41, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.05);
  }

  .orbit-container {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
  }

  .orbit-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 15%),
      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 10%);
    z-index: -1;
  }

  .planet {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px;
  }

  .planet-core {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    padding: 10px;
    position: relative;
    z-index: 3;
    animation: pulse 4s infinite ease-in-out;
    box-shadow: 
      0 0 0 10px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(255, 255, 255, 0.2);
  }

  .planet-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
    animation: glow 8s infinite alternate;
  }

  @keyframes glow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
  }

  .orbit-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    animation: spin 20s linear infinite;
  }

  .orbit-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, #fc466b, #3f5efb);
    border-radius: 50%;
    top: -10px;
    left: calc(50% - 10px);
    box-shadow: 0 0 20px rgba(252, 70, 107, 0.6);
    animation: pulse 2s infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }

  .app-details {
    flex: 1;
    min-width: 300px;
    color: white;
    padding: 20px;
    position: relative;
  }

  .app-title-cosmic {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px 0;
    background: linear-gradient(to right, #fff, #c9d6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }

  .app-title-cosmic::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #fff, transparent);
    bottom: -5px;
    left: 0;
  }

  .app-tagline-cosmic {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }

  .download-platforms {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .platform-badge {
    margin: 10px 0;
  }

  .download-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .android {
    background: rgba(164, 198, 57, 0.15);
  }

  .ios {
    background: rgba(0, 122, 255, 0.15);
  }

  .download-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .android:hover {
    background: rgba(164, 198, 57, 0.25);
  }

  .ios:hover {
    background: rgba(0, 122, 255, 0.25);
  }

  .badge-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
  }

  .android-icon {
    background-color: rgba(164, 198, 57, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A4C639'%3E%3Cpath d='M16.61 5.23l1.71-2.97c.19-.32.07-.74-.26-.92-.32-.18-.74-.07-.92.26l-1.73 3C13.93 3.9 12.01 3.5 10 3.5c-2.01 0-3.93.4-5.41 1.1L2.86 1.6c-.19-.33-.6-.44-.92-.26-.33.18-.44.6-.26.92l1.71 2.97C1.13 7.21.06 10.33 1.56 13.33c.1.2.31.33.54.33h19.8c.23 0 .44-.13.54-.33 1.5-3 .43-6.12-1.83-8.1zm-8.61 5.52c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm6 0c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75z'/%3E%3C/svg%3E");
  }

  .ios-icon {
    background-color: rgba(0, 122, 255, 0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230071E3'%3E%3Cpath d='M16.36 1C15.2 1 13.92 1.7 13.05 2.79c-.78.95-1.46 2.5-1.26 3.99 1.26.08 2.57-.6 3.45-1.62.8-.97 1.45-2.5 1.12-3.97z'/%3E%3Cpath d='M22 17.31c0 .46-.39.83-.86.83h-1.28v3.03c0 .46-.39.83-.86.83s-.86-.37-.86-.83V18.2-.14h-2.21l-2.58 4.41c-.7 1.2-1.14 2.38-1.14 2.38s-.43 1.16-1.13 2.36l-2.55 4.38h-2.32V18.2h-1.28c-.47 0-.86-.37-.86-.83V14.1c0-.46.39-.83.86-.83h1.28V7.39H3.72c-.47 0-.86-.37-.86-.83s.39-.83.86-.83h1.28V4.03c.1-6.21 6.47-3.8 9.46-1.64 2.99-2.16 5.92-1.67 7.21-.97.5.28.71.84.55 1.38-.16.52-.71.82-1.21.54-.96-.53-3.08-1.23-6.16.2.22 1.76.75 3.37 1.58 4.73l4.13 7.04c.28.47.28 1.03 0 1.5l-1.87 3.21h3.29c.47-.06.87.32.87.78.06.46.01.27.01.27z'/%3E%3C/svg%3E");
  }

  .badge-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .connector {
    display: flex;
    align-items: center;
    margin: 0 15px;
    opacity: 0.7;
  }

  .connector-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
  }

  .connector-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.5));
    margin: 0 5px;
  }

  .cosmic-cta {
    margin-top: 30px;
  }

  .cosmic-button {
    position: relative;
    overflow: hidden;
    padding: 15px 40px;
    background: linear-gradient(45deg, #fc466b, #3f5efb);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 
      0 10px 20px rgba(252, 70, 107, 0.3),
      0 0 0 1px rgba(255, 255, 255, 0.1);
  }

  .cosmic-button:hover {
    transform: translateY(-3px);
    box-shadow: 
      0 15px 30px rgba(252, 70, 107, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.2);
  }

  .cosmic-button:active {
    transform: translateY(1px);
  }

  .button-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 3%),
      radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 3%),
      radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 3%),
      radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 3%),
      radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 3%);
    pointer-events: none;
  }

  .button-text {
    position: relative;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .orbit-app-promo {
      padding: 40px 20px;
    }
    
    .planet {
      margin: 20px auto;
    }
    
    .app-details {
      text-align: center;
    }
    
    .app-title-cosmic::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .download-platforms {
      justify-content: center;
    }
    
    .connector {
      width: 100%;
      justify-content: center;
      margin: 15px 0;
    }
    
    .cosmic-button {
      width: 100%;
      max-width: 300px;
    }
  }

  /* Clean Small App Download Section with Mini Design Elements */
  .clean-app-download {
    padding: 20px;
    margin: 30px auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .white-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
  }

  .white-container::before {
    content: '';
    position: absolute;
    height: 100px;
    width: 100px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05), rgba(66, 133, 244, 0));
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: 0;
  }

  .app-logo-container {
    margin-right: 20px;
    position: relative;
    z-index: 1;
  }

  .app-logo-clean {
    width: 80px;
    height: 75px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 5px;
    background: white;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease;
  }

  .white-container:hover .app-logo-clean {
    transform: scale(1.05);
  }

 
  .clean-app-info {
    flex: 1;
    position: relative;
    z-index: 1;
  }

  .title-badge-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .app-title-clean {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    position: relative;
  }

  .mini-badge {
    font-size: 9px;
    background-color: #4285F4;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  .app-desc-clean {
    font-size: 12px;
    color: #777;
    margin: 0 0 12px 0;
    position: relative;
  }

  .app-desc-clean::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #4285F4, transparent);
    bottom: -6px;
    left: 0;
  }

  .clean-download-options {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .clean-platform-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #555;
    padding: 6px 10px;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-size: 13px;
    position: relative;
  }

  .clean-platform-btn:hover {
    background-color: #f5f5f5;
    transform: translateX(2px);
  }

  .platform-logo {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .android-logo {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233DDC84'%3E%3Cpath d='M16.61 5.23l1.71-2.97c.19-.32.07-.74-.26-.92-.32-.18-.74-.07-.92.26l-1.73 3C13.93 3.9 12.01 3.5 10 3.5c-2.01 0-3.93.4-5.41 1.1L2.86 1.6c-.19-.33-.6-.44-.92-.26-.33.18-.44.6-.26.92l1.71 2.97C1.13 7.21.06 10.33 1.56 13.33c.1.2.31.33.54.33h19.8c.23 0 .44-.13.54-.33 1.5-3 .43-6.12-1.83-8.1zm-8.61 5.52c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm6 0c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75z'/%3E%3C/svg%3E");
  }

  .ios-logo {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23555555'%3E%3Cpath d='M16.36 1C15.2 1 13.92 1.7 13.05 2.79c-.78.95-1.46 2.5-1.26 3.99 1.26.08 2.57-.6 3.45-1.62.8-.97 1.45-2.5 1.12-3.97zM22 17.31c0 .46-.39.83-.86.83h-1.28v3.03c0 .46-.39.83-.86.83s-.86-.37-.86-.83V18.2-.14h-2.21l-2.58 4.41c-.7 1.2-1.14 2.38-1.14 2.38s-.43 1.16-1.13 2.36l-2.55 4.38h-2.32V18.2h-1.28c-.47 0-.86-.37-.86-.83V14.1c0-.46.39-.83.86-.83h1.28V7.39H3.72c-.47 0-.86-.37-.86-.83s.39-.83.86-.83h1.28V4.03c.1-6.21 6.47-3.8 9.46-1.64 2.99-2.16 5.92-1.67 7.21-.97.5.28.71.84.55 1.38-.16.52-.71.82-1.21.54-.96-.53-3.08-1.23-6.16.2.22 1.76.75 3.37 1.58 4.73l4.13 7.04c.28.47.28 1.03 0 1.5l-1.87 3.21h3.29c.47-.06.87.32.87.78.06.46.01.27.01.27z'/%3E%3C/svg%3E");
  }

  .mini-arrow {
    font-size: 13px;
    margin-left: 3px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
  }

  .clean-platform-btn:hover .mini-arrow {
    opacity: 1;
    transform: translateX(0);
  }

  .platform-divider {
    margin: 0 10px;
    color: #ddd;
    font-size: 14px;
  }

  .mini-line {
    height: 1px;
    background: linear-gradient(to right, #eee, transparent);
    margin-top: 5px;
  }

  @media (max-width: 480px) {
    .white-container {
      flex-direction: column;
      text-align: center;
      padding: 15px;
    }
    
    .app-logo-container {
      margin-right: 0;
      margin-bottom: 15px;
    }
    
    .title-badge-wrap {
      justify-content: center;
    }
    
    .app-desc-clean::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .clean-download-options {
      justify-content: center;
    }
    
    .mini-line {
      background: linear-gradient(to right, transparent, #eee, transparent);
    }
  }
   
    /* Floating elements animation */
    .floating-element {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      pointer-events: none;
    }
    
    @keyframes float {
      0% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(180deg); }
      100% { transform: translateY(0) rotate(360deg); }
    }
    
    /* Modern Policy Content Styles */
    .policy-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 12px;
      padding: 20px;
      display: flex;
      align-items: flex-start;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      transition: all 0.3s ease;
    }
    
    .policy-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .policy-icon {
      background: #05d9e8;
      color: #001021;
      height: 36px;
      width: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .policy-icon svg {
      width: 20px;
      height: 20px;
    }
    
    .policy-highlight {
      color: #05d9e8;
      font-weight: 600;
      position: relative;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    
    .policy-highlight:hover {
      color: #ffffff;
    }
    
    .policy-highlight::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -2px;
      left: 0;
      background-color: #05d9e8;
      transform: scaleX(0);
      transform-origin: bottom left;
      transition: transform 0.3s ease;
    }
    
    .policy-highlight:hover::after {
      transform: scaleX(1);
    }
    
    .simple-policy h3 {
      margin-bottom: 15px;
      display: inline-block;
      position: relative;
    }
    
    .simple-policy h3::after {
      content: '';
      position: absolute;
      width: 40%;
      height: 3px;
      background: #05d9e8;
      bottom: -5px;
      left: 0;
      border-radius: 2px;
    }