 body {
      font-family: Arial, sans-serif;
      background-color: #f8f9fa;
    }
    .main-title {
      color: #006400;
      font-weight: bold;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease-out;
    }
    .card-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      max-width: 800px;
      margin: 0 auto;
    }
    .card-frame {
      position: relative;
      border: 8px solid rgb(36, 36, 115);
      border-radius: 10px;
      width: 320px;
      background-color: white;
      padding: 20px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeIn 0.8s ease-out;
    }
    .card-frame:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    .indicator-container {
      position: relative;
      margin: 15px 0;
    }
    .indicator {
      position: absolute;
      background-color: #e8f5e9;
      padding: 4px 10px;
      border: 1px solid #4caf50;
      color: #2e7d32;
      border-radius: 5px;
      font-size: 0.8rem;
      font-weight: 600;
      white-space: nowrap;
      z-index: 2;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      animation: pulse 2s infinite;
    }
    .h-line {
      position: absolute;
      height: 1px;
      border-top: 1px dashed #4caf50;
      z-index: 1;
      animation: drawLine 1s ease-out;
      transform-origin: left;
    }
    .h-line-right {
      transform-origin: right;
    }
    .profile-section {
      text-align: center;
    }
    .logo {
      width: 80px;
      margin: 10px auto;
      animation: fadeInRotate 1s ease-out;
    }
    .profile-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 15px auto;
      object-fit: cover;
      border: 3px solid rgb(36, 36, 115);
      transition: transform 0.3s ease;
      animation: fadeInScale 1s ease-out;
    }
    .profile-img:hover {
      transform: scale(1.1);
    }
    .name {
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 5px;
      animation: fadeInRight 0.5s ease-out;
    }
    .title {
      color: #777;
      font-size: 0.9rem;
      margin-bottom: 15px;
      animation: fadeInLeft 0.5s ease-out;
    }
    .contact-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 10px;
      animation: fadeInUp 0.5s ease-out;
    }
    .contact-icons i {
      font-size: 1.2rem;
      color: #333;
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .contact-icons i:hover {
      transform: scale(1.2);
      color: rgb(92, 92, 92);
    }
    .service-section {
      text-align: left;
    } 
    .service-title {
      text-align: center;
      font-weight: bold;
      margin-bottom: 15px;
      animation: fadeIn 0.5s ease-out;
    }
    .service-item {
      display: flex;
      margin-bottom: 15px;
      gap: 10px;
      animation: slideInLeft 0.5s ease-out;
      transition: transform 0.2s ease;
    }
    .service-item:hover {
      transform: translateX(5px);
    }
    .service-img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 5px;
      transition: transform 0.3s ease;
    }
    .service-img:hover {
      transform: scale(1.1);
    }
    .service-text {
      font-size: 0.75rem;
    }
    .social-section {
      text-align: center;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 15px;
      animation: fadeIn 0.5s ease-out;
    }
    .social-icons i {
      font-size: 1.2rem;
      color: #333;
      transition: transform 0.3s ease, color 0.3s ease;
    }
    .social-icons i:hover {
      transform: scale(1.2);
      color: gray;
    }
    .qr-caption {
      font-size: 0.9rem;
      margin-bottom: 15px;
      animation: fadeIn 0.5s ease-out;
    }
    .qr-code {
      width: 180px;
      height: 180px;
      margin: 0 auto 20px;
      background: #f0ffff;
      padding: 10px;
      border-radius: 5px;
      transition: transform 0.3s ease;
      animation: fadeInScale 0.8s ease-out;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .qr-code:hover {
      transform: scale(1.05);
    }
    .action-button {
      display: block;
      background-color: gray;
      color: white;
      text-align: center;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 10px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      animation: slideInRight 0.5s ease-out;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    }
    .action-button:hover {
      background-color: black;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
    .wa-input {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      margin-bottom: 10px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      animation: fadeIn 0.5s ease-out;
    }
    .wa-input:focus {
      outline: none;
      border-color: #6B2A14;
      box-shadow: 0 0 0 3px rgba(107, 42, 20, 0.2);
    }
    .whatsapp-button {
      background-color: gray;
    }
    
    /* Get Now Button Styles */
    .get-now-button {
      display: block;
      background-color: #008000;
      color: white;
      text-align: center;
      font-size: 1.2rem;
      font-weight: bold;
      padding: 15px;
      border-radius: 8px;
      margin: 20px auto 10px;
      text-decoration: none;
      max-width: 320px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.15);
      transition: all 0.4s ease;
      animation: pulse 2s infinite, fadeIn 1s ease-out;
      border: 2px solid #006400;
    }
    
    .get-now-button:hover {
      background-color: #006400;
      color: white;
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      text-decoration: none;
    }
    
    .get-now-button i {
      margin-right: 8px;
    }
    
    /* Feature Section Styles */
    .feature-section {
      padding: 50px 0;
      margin-top: 20px;
    }
    
    .feature-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .feature-icon {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #f69309;
    }
    
    .feature-title {
      font-weight: 700;
      margin-bottom: 15px;
      color: #333;
    }
    
    .feature-text {
      color: #666;
    }
    
    .highlight-gradient {
      background: linear-gradient(195deg, #f69309 0%, #edda07 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-fill-color: transparent;
    }
    
    /* Animation Keyframes */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    @keyframes fadeInScale {
      from { 
        opacity: 0; 
        transform: scale(0.8);
      }
      to { 
        opacity: 1; 
        transform: scale(1);
      }
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(20px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes fadeInRotate {
      from {
        opacity: 0;
        transform: rotate(-20deg) scale(0.8);
      }
      to {
        opacity: 1;
        transform: rotate(0) scale(1);
      }
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0.4);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(0, 128, 0, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(0, 128, 0, 0);
      }
    }
    
    @keyframes drawLine {
      from {
        transform: scaleX(0);
      }
      to {
        transform: scaleX(1);
      }
    }
    
    /* Delay classes for staggered animations */
    .delay-1 {
      animation-delay: 0.2s;
    }
    .delay-2 {
      animation-delay: 0.4s;
    }
    .delay-3 {
      animation-delay: 0.6s;
    }
    
    /* Media Queries for All Mobile Devices */
    @media (max-width: 1024px) {
      .card-container {
        max-width: 600px;
      }
    }

    @media (max-width: 768px) {
      .card-frame {
        width: 90%;
        max-width: 320px;
        margin: 0 auto;
        border-width: 6px;
      }
      
      .main-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
      }
      
      .indicator-container {
        margin-top: 40px;
        width: 100%;
      }
      
      .h-line {
        display: none;
      }
      
      .indicator {
        position: relative !important;
        display: inline-block;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        margin: 0 3px 10px !important;
        font-size: 0.75rem;
        padding: 4px 8px;
        animation: none;
      }
      
      .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      .service-img {
        margin-bottom: 10px;
      }
      
      .service-text {
        font-size: 0.75rem;
      }
      
      .qr-code {
        width: 160px;
        height: 160px;
      }
      
      .get-now-button {
        width: 90%;
        max-width: 280px;
        font-size: 1.1rem;
        padding: 12px;
      }
    }

    @media (max-width: 576px) {
      .card-frame {
        border-width: 5px;
        padding: 15px;
      }
      
      .indicator {
        padding: 3px 6px;
        font-size: 0.65rem;
        margin: 0 2px 8px !important;
      }
      
      .name {
        font-size: 1.1rem;
      }
      
      .title {
        font-size: 0.85rem;
      }
      
      .service-text {
        font-size: 0.7rem;
      }
      
      .feature-icon {
        font-size: 2.5rem;
      }
      
      .feature-title {
        font-size: 1.2rem;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding-left: 10px;
        padding-right: 10px;
      }

      .card-frame {
        padding: 12px;
        border-width: 4px;
      }
      
      .logo, .profile-img {
        width: 70px;
        height: 70px;
      }
      
      .contact-icons, .social-icons {
        gap: 10px;
      }
      
      .contact-icons i, .social-icons i {
        font-size: 1rem;
      }
      
      .qr-code {
        width: 140px;
        height: 140px;
      }
      
      .action-button {
        padding: 8px;
        font-size: 0.9rem;
      }
      
      .get-now-button {
        font-size: 1rem;
        padding: 10px;
      }
    }

    @media (max-width: 360px) {
      .main-title {
        font-size: 1.3rem;
      }
      
      .indicator {
        padding: 2px 5px;
        font-size: 0.6rem;
        margin: 0 1px 6px !important;
      }
      
      .card-frame {
        padding: 10px;
        border-width: 3px;
      }
      
      .profile-img, .logo {
        width: 60px;
        height: 60px;
      }
      
      .service-img {
        width: 60px;
        height: 60px;
      }
      
      .name {
        font-size: 1rem;
      }
      
      .title {
        font-size: 0.8rem;
      }
      
      .qr-code {
        width: 120px;
        height: 120px;
      }
      
      .qr-caption {
        font-size: 0.8rem;
      }
      
      .feature-icon {
        font-size: 2rem;
      }
      
      .feature-section .display-4 {
        font-size: 1.5rem;
      }
    }

    /* Fix for Landscape Mode */
    @media (max-height: 500px) and (orientation: landscape) {
      .card-container {
        gap: 30px;
      }
      
      .indicator-container {
        margin: 10px 0;
      }
      
      .card-frame {
        padding: 10px;
        max-height: 80vh;
        overflow: auto;
      }
      
      .profile-img, .logo {
        width: 60px;
        height: 60px;
      }
      
      .service-img {
        width: 60px;
        height: 60px;
      }
      
      .qr-code {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
      }
      
      .feature-section {
        padding: 20px 0;
      }
    }