 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
      }

      /* Header */
      header {
        background: white;
        padding: 1.2rem 5%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
      }
.rentido-logo {
        width: 140px;
        object-fit: contain;
        margin-left: -60px;
      }
      .phone-logo {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.4rem;
        font-weight: 700;
        color: #1a1a1a;
      }

      /* NEW: Logo Image Styling */
      .logo-img {
        width: 150px;
        height: 40px;
        object-fit: contain;
      }

      nav ul {
        display: flex;
        list-style: none;
        gap: 3rem;
      }

      nav a {
        text-decoration: none;
        color: #1a1a1a;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s;
        position: relative;
      }

      nav a:hover {
        color: #0099ff;
      }

      nav a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #0099ff;
        transition: width 0.3s;
      }

      nav a:hover::after {
        width: 100%;
      }

      .header-app-stores {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      .header-app-stores a img {
        height: 35px;
        width: auto;
        transition: opacity 0.3s ease;
      }

      .header-app-stores a:hover img {
        opacity: 0.7;
      }

      /* Hero Section */
      .hero {
        background: #000000;
        color: white;
        padding: 120px 5%;
        min-height: 500px;
        text-align: center;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero::before {
        content: "RENTIDO";
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        font-size: 0.75rem;
        letter-spacing: 4px;
        opacity: 0.6;
        font-weight: 500;
      }

      .hero::after {
        content: "RENTIDO";
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        font-size: 0.75rem;
        letter-spacing: 4px;
        opacity: 0.6;
        font-weight: 500;
      }

      .hero-content {
        position: relative;
        z-index: 1;
      }

      .hero-content h2 {
        font-size: 0.85rem;
        letter-spacing: 5px;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 400;
      }

      .hero-content h1 {
        font-size: 5rem;
        font-weight: 300;
        letter-spacing: 12px;
        margin-bottom: 0;
        line-height: 1.2;
        font-family: "Georgia", serif;
      }

      .sound-wave {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 4px;
        margin-top: 60px;
        height: 40px;
      }

      .wave-bar {
        width: 3px;
        background: white;
        animation: wave 1.2s ease-in-out infinite;
        border-radius: 2px;
      }

      .wave-bar:nth-child(1) {
        height: 15px;
        animation-delay: 0s;
      }
      .wave-bar:nth-child(2) {
        height: 25px;
        animation-delay: 0.1s;
      }
      .wave-bar:nth-child(3) {
        height: 35px;
        animation-delay: 0.2s;
      }
      .wave-bar:nth-child(4) {
        height: 20px;
        animation-delay: 0.3s;
      }
      .wave-bar:nth-child(5) {
        height: 30px;
        animation-delay: 0.4s;
      }
      .wave-bar:nth-child(6) {
        height: 15px;
        animation-delay: 0s;
      }

      @keyframes wave {
        0%,
        100% {
          transform: scaleY(1);
          opacity: 0.6;
        }
        50% {
          transform: scaleY(1.5);
          opacity: 1;
        }
      }

      /* Main Content Section */
      .main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 100px 5% 80px;
        max-width: 1400px;
        margin: 0 auto;
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      .main-content::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200px;
        height: 150px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 150'%3E%3Cpath d='M0,150 Q50,120 100,130 T200,140 L200,150 Z' fill='%23f0f0f0'/%3E%3C/svg%3E");
        opacity: 0.3;
      }

      .main-content::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 200px;
        height: 150px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 150'%3E%3Cpath d='M0,140 Q50,130 100,135 T200,150 L0,150 Z' fill='%23f0f0f0'/%3E%3C/svg%3E");
        opacity: 0.3;
      }

      .text-content {
        position: relative;
        z-index: 2;
      }

      .text-content h3 {
        color: #5a7aa8;
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-style: italic;
        font-weight: 500;
      }

      .text-content h2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
        line-height: 1.2;
        font-weight: 700;
      }

      .text-content h2 .highlight {
        color: #003d82;
      }

      .text-content p {
        color: #555;
        margin-bottom: 2.5rem;
        line-height: 1.8;
        font-size: 1.05rem;
      }

      .cta-button {
        background: #003d82;
        color: white;
        padding: 14px 35px;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(0, 61, 130, 0.3);
      }

      .cta-button:hover {
        background: #002a5c;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 61, 130, 0.4);
      }

      .phone-mockup {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;
      }

      .phone-container {
        position: relative;
        width: 320px;
        height: 400px;
      }

      .blob-background {
        position: absolute;
        width: 100%;
        height: 100%;
      }

      .blob {
        position: absolute;
        border-radius: 50%;
      }

      .blob-1 {
        width: 280px;
        height: 280px;
        background: #5a9fd4;
        top: -20px;
        right: -40px;
        opacity: 0.9;
      }

      .blob-2 {
        width: 200px;
        height: 200px;
        background: #003d82;
        bottom: 40px;
        left: -20px;
        opacity: 0.8;
      }

      .blob-3 {
        width: 150px;
        height: 150px;
        background: #7ba5ce;
        bottom: -20px;
        right: 60px;
        opacity: 0.6;
      }

      .blob-4 {
        width: 100px;
        height: 100px;
        background: #c8ddf0;
        top: 60px;
        left: -30px;
        opacity: 0.5;
      }

      .phone-frame {
        width: 240px;
        height: 480px;
        border: 14px solid #1a1a1a;
        border-radius: 45px;
        background: white;
        position: relative;
        z-index: 10;
        overflow: hidden;
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
        margin: 0 auto;
      }

      .phone-notch {
        width: 120px;
        height: 28px;
        background: #1a1a1a;
        border-radius: 0 0 18px 18px;
        margin: 0 auto;
        position: relative;
      }

      .phone-camera {
        width: 12px;
        height: 12px;
        background: #333;
        border-radius: 50%;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
      }

      .phone-screen {
        padding: 30px 20px;
        background: white;
        height: calc(100% - 28px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }

      .phone-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 1.3rem;
        color: #1a1a1a;
        margin-bottom: 20px;
      }

      .phone-logo-icon {
        width: 24px;
        height: 24px;
      }

      .phone-logo-icon svg {
        width: 100%;
        height: 100%;
      }

      /* Services Section */
      .services {
        padding: 80px 5%;
        background: white;
        position: relative;
        overflow: hidden;
      }

      .services::before,
      .services::after {
        content: "";
        position: absolute;
        width: 150px;
        height: 200px;
        opacity: 0.05;
      }

      .services::before {
        top: 20px;
        left: 20px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 200'%3E%3Cpath d='M0,0 Q30,50 0,100 T0,200' stroke='%23003d82' stroke-width='2' fill='none'/%3E%3Cpath d='M30,0 Q60,50 30,100 T30,200' stroke='%23003d82' stroke-width='2' fill='none'/%3E%3Cpath d='M60,0 Q90,50 60,100 T60,200' stroke='%23003d82' stroke-width='2' fill='none'/%3E%3C/svg%3E");
      }

      .services::after {
        bottom: 20px;
        right: 20px;
      }

      .services h2 {
        text-align: left;
        font-size: 2rem;
        margin-bottom: 5rem;
        color: #1a1a1a;
        font-weight: 700;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
      }

      .services h2 .highlight {
        color: #003d82;
      }

      .service-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
      }

      .service-card {
        background: white;
        padding: 2.8rem 3.2rem;
        border-radius: 20px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid #f0f0f0;
      }
      .service-card:nth-child(1) {
        background: linear-gradient(135deg, #e8f4f8 0%, #f5f9fb 100%);
      }

      .service-card:nth-child(2) {
        background: linear-gradient(135deg, #e0f5f0 0%, #f0faf7 100%);
      }

      .service-card:nth-child(3) {
        background: linear-gradient(135deg, #f0f8e8 0%, #f7fbf0 100%);
      }

      .service-card:nth-child(4) {
        background: linear-gradient(135deg, #f5e8f8 0%, #faf5fb 100%);
      }

      .service-card:nth-child(5) {
        background: linear-gradient(135deg, #fff8e8 0%, #fffbf0 100%);
      }

      .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      }

      .service-icon {
        width: 50%;
        height: 70px;
        margin: 0 auto 1.2rem;
        background: white;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
        margin-top: -75px;
      }

      .service-icon img {
        width: 80%;
        height: 80%;
        object-fit: contain;
      }

      .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
        color: #1a1a1a;
        font-weight: 700;
      }

      .service-card p {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.6;
      }

      /* Why Section - Updated */
      .why-section {
        padding: 80px 5%;
        max-width: 1400px;
        margin: 0 auto;
      }

      .why-section h2 {
        text-align: center;
        font-size: 2.3rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
      }

      .why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
      }

      .why-card {
        background: #fff;
        padding: 20px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        border: 3px solid #dcdcdc;
        min-height: 220px;
      }

      .why-text {
        flex: 1;
      }

      .why-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 600;
        color: #1a1a1a;
      }

      .why-card p {
        color: #666;
        margin-bottom: 1.2rem;
        line-height: 1.5;
      }

      .why-card button {
        background: #002b7a;
        color: #fff;
        border: none;
        padding: 10px 22px;
        border-radius: 30px;
        cursor: pointer;
        font-size: 0.9rem;
        font-weight: 500;
        transition: 0.3s;
      }

      .why-card button:hover {
        background: #001f5a;
      }

      .why-img {
        width: 140px;
        height: auto;
        object-fit: contain;
      }

      /* Benefits Section */
      .benefits {
        background: #fff;
        padding: 80px 5%;
      }

      .benefits h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        color: #1a1a1a;
        font-weight: 700;
      }

      .benefits-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: center;
      }

      .benefits-photo {
        width: 100%;
        border-radius: 15px;
        object-fit: cover;
      }

      /* Right List */
      .benefits-list h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        color: #1a1a1a;
        font-weight: 700;
      }

      .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .benefit-icon {
        min-width: 30px;
        font-size: 1.4rem;
        color: #002b7a; /* BLUE COLOR */
      }

      .benefit-text {
        color: #333;
        font-size: 1rem;
        line-height: 1.6;
      }

      /* About Section */
      .about {
        padding: 30px 5%;
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }

      /* LEFT SIDE IMAGE */
      .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .about-image img {
        width: 100%;
        max-width: 420px;
        border-radius: 20px;
        object-fit: contain;
      }

      /* RIGHT SIDE CONTENT */
      .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
      }

      .about-content p {
        color: #666;
        line-height: 1.8;
        font-size: 1rem;
      }

      /* Newsletter Section */
      /* NEWSLETTER SECTION */
      .newsletter {
        padding: 0px 5% 110px;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .newsletter-box {
        background: #f5f8ff;
        width: 100%;
        max-width: 1200px;
        padding: 50px 40px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 6px 20px rgb(0 0 0 / 16%);
      }

      .newsletter-box h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #0b2b69;
      }

      .newsletter-form {
        display: flex;
        justify-content: center;
        gap: 1rem;
      }

      .newsletter-form input {
        width: 65%;
        padding: 15px 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
      }

      .newsletter-form button {
        background: #009ee2;
        color: white;
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1rem;
        transition: 0.3s;
      }

      .newsletter-form button:hover {
        background: #007bb5;
      }

      /* FOOTER */
      footer {
        background: #001d3d;
        color: white;
        padding: 150px 5% 30px;
        margin-top: -220px;
      }

      .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr .8fr 0.8fr 1.2fr 1.2fr;
        gap: 2rem;
        margin-bottom: 2rem;
      }

      .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 1rem;
      }

      .footer-logo img {
        width: 130px;
        height: 80px;
        object-fit: contain;
      }

      .footer-about p {
        color: #b3c5d6;
        line-height: 1.7;
        width: 80%;
      }

      .footer-links h4 {
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .footer-links ul {
        list-style: none;
        padding: 0;
      }

      .footer-links li {
        margin-bottom: 0.6rem;
        color: #b3c5d6;
        font-size: 0.95rem;
      }

      .footer-links a {
        color: #b3c5d6;
        text-decoration: none;
        transition: 0.3s;
      }

      .footer-links a:hover {
        color: #00aaff;
      }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #b3c5d6;
        font-size: 0.9rem;
      }

      .footer-bottom .copyright {
        text-align: left;
      }

      .footer-bottom .app-stores {
        display: flex;
        gap: 10px;
      }

      .footer-bottom .app-stores a img {
        height: 40px;
        width: auto;
        transition: opacity 0.3s ease;
      }

      .footer-bottom .app-stores a:hover img {
        opacity: 0.8;
      }

      /* Responsive */
      @media (max-width: 768px) {
        nav ul {
          display: none;
        }

        .header-app-stores {
          gap: 5px;
        }

        .header-app-stores a img {
          height: 25px;
        }

        .main-content,
        .benefits-content,
        .about,
        .footer-content {
          grid-template-columns: 1fr;
        }

        .hero-content h1 {
          font-size: 2.5rem;
        }

        .service-grid {
          grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }

        .why-grid {
          grid-template-columns: 1fr;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 15px;
          text-align: center;
        }

        .footer-bottom .copyright {
          text-align: center;
        }

        .footer-bottom .app-stores {
          justify-content: center;
        }

        .footer-bottom .app-stores a img {
          height: 35px;
        }
      }