
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      header {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 0.5rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 60px;
      }

      .logo {
        font-size: 1.6rem;
        font-weight: bold;
        color: #667eea;
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
      }

      .nav-link {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-link:hover {
        color: #667eea;
      }

      .nav-link.cta {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-weight: bold;
        transition: all 0.3s ease;
      }

      .nav-link.cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        color: white;
      }

      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #2d3748;
        position: relative;
        overflow: hidden;
        background:
          linear-gradient(135deg, rgba(247, 250, 252, 0.75) 0%, rgba(237, 242, 247, 0.8) 100%),
          url('../img/photo-1551434678-e076c223a692.jpg') center/cover;
        background-attachment: fixed;
      }

      .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          radial-gradient(circle at 20% 80%, rgba(226, 232, 240, 0.2) 0%, transparent 70%),
          radial-gradient(circle at 80% 20%, rgba(203, 213, 225, 0.2) 0%, transparent 70%);
        opacity: 0.4;
      }

      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        padding: 0 20px;
        animation: fadeInUp 1.5s ease-out;
      }

      .hero h1 {
        font-size: 4.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #1a202c;
        line-height: 1.1;
        letter-spacing: -0.02em;
      }

      .hero p {
        font-size: 1.4rem;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        color: #4a5568;
        line-height: 1.6;
      }

      .hero-stats {
        display: flex;
        justify-content: center;
        gap: 60px;
        margin: 3rem 0;
        flex-wrap: wrap;
      }

      .hero-stat {
        text-align: center;
        animation: fadeInUp 1.5s ease-out;
      }

      .hero-stat-number {
        font-size: 3rem;
        font-weight: bold;
        display: block;
        color: #667eea;
        margin-bottom: 0.5rem;
      }

      .hero-stat-label {
        font-size: 1rem;
        color: #718096;
        margin-top: 0.5rem;
      }

      .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 20px 50px;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.3rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        border: none;
		margin: 0 20px;
      }

      .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
        color: white;
        text-decoration: none;
      }



      @keyframes float {
        0%, 100% {
          transform: translateY(0px) scale(1);
          opacity: 0.6;
        }
        50% {
          transform: translateY(-30px) scale(1.1);
          opacity: 0.8;
        }
      }

      @keyframes particleFloat {
        0% { transform: translateY(0px) translateX(0px); }
        25% { transform: translateY(-10px) translateX(5px); }
        50% { transform: translateY(-5px) translateX(-3px); }
        75% { transform: translateY(-15px) translateX(8px); }
        100% { transform: translateY(0px) translateX(0px); }
      }

      @keyframes fadeInUp {
        0% {
          opacity: 0;
          transform: translateY(50px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }



      .stats {
        background: white;
        padding: 60px 0;
        text-align: center;
      }

      .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      .stat-item {
        padding: 30px;
        border-radius: 15px;
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .stat-number {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 10px;
      }

      .how-it-works {
        padding: 80px 0;
        background: #f8f9fa;
      }

      .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 60px;
        color: #333;
      }

      .steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
      }

      @media (max-width: 1200px) {
        .steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
        }
      }

      .step {
        background: white;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }

      .step:hover {
        transform: translateY(-10px);
      }

      .step-icon {
        font-size: 3rem;
        color: #667eea;
        margin-bottom: 20px;
      }

      .step h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #333;
      }

      .benefits {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
      }

      .benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
      }

      @media (max-width: 1200px) {
        .benefits-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
        }
      }

      @media (max-width: 900px) {
        .steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
        }

        .benefits-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }

        .testimonials-container {
          gap: 25px;
        }

        .testimonials-container .testimonial-card {
          min-width: 280px;
          max-width: 400px;
        }
      }

      .benefit {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
      }

      .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .form-section {
        padding: 80px 0;
        background: white;
      }

      .form-container {
        max-width: 600px;
        margin: 0 auto;
        background: #f8f9fa;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }

      .question {
        margin-bottom: 30px;
        padding: 25px;
        background: white;
        border-radius: 10px;
        border-left: 5px solid #667eea;
      }

      .question h3 {
        margin-bottom: 15px;
        color: #333;
      }

      .radio-group {
        display: flex;
        gap: 20px;
      }

      .radio-option {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
      }

      .submit-btn {
        width: 100%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
      }

      .progress-container {
        margin-bottom: 30px;
        background: white;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }

      .progress-title {
        font-size: 1.2rem;
        font-weight: bold;
        color: #333;
      }

      .progress-percentage {
        font-size: 1.1rem;
        font-weight: bold;
        color: #667eea;
      }

      .progress-bar-container {
        width: 100%;
        height: 12px;
        background: #e9ecef;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 10px;
      }

      .progress-bar {
        height: 100%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        border-radius: 6px;
        transition: width 0.5s ease;
        position: relative;
      }

      .progress-bar::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          45deg,
          transparent 30%,
          rgba(255, 255, 255, 0.3) 50%,
          transparent 70%
        );
        animation: shimmer 2s infinite;
      }

      @keyframes shimmer {
        0% {
          transform: translateX(-100%);
        }
        100% {
          transform: translateX(100%);
        }
      }

      @keyframes slideIn {
        0% {
          opacity: 0;
          transform: translateY(-20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes slideOut {
        0% {
          opacity: 1;
          transform: translateY(0);
        }
        100% {
          opacity: 0;
          transform: translateY(-20px);
        }
      }

      .progress-steps {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
        color: #666;
      }

      .progress-step {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .progress-step.completed {
        color: #28a745;
        font-weight: bold;
      }

      .progress-step.current {
        color: #667eea;
        font-weight: bold;
      }

      footer {
        background: #333;
        color: white;
        padding: 40px 0;
        text-align: center;
      }

      .trust-signals {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 0;
        flex-wrap: wrap;
      }

      .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #666;
        font-size: 0.85rem;
        background: rgba(102, 126, 234, 0.05);
        padding: 4px 12px;
        border-radius: 15px;
        border: 1px solid rgba(102, 126, 234, 0.1);
      }

      .trust-item i {
        color: #667eea;
        font-size: 0.9rem;
      }

      .testimonial-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e9ecef;
      }

      .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      }

      .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        font-weight: bold;
        border: 3px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .testimonial-stars {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #ffc107;
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 15px;
        color: #555;
        line-height: 1.6;
        font-size: 1rem;
      }

      .testimonial-author {
        font-weight: bold;
        color: #333;
        margin-bottom: 5px;
      }

      .testimonial-location {
        font-size: 0.9rem;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
      }

      .testimonials-container {
        display: flex;
        justify-content: center;
        align-items: stretch;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
      }

      .testimonials-container .testimonial-card {
        flex: 1;
        min-width: 300px;
        max-width: 350px;
      }

      .testimonial-avatar.avatar-1 {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
      }

      .testimonial-avatar.avatar-2 {
        background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
      }

      .testimonial-avatar.avatar-3 {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
        color: #333;
      }

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

        .hero {
          min-height: 100vh;
          background-attachment: scroll;
        }

        .hero-content {
          padding: 0 15px;
        }

        .hero h1 {
          font-size: 2.8rem;
          margin-bottom: 1rem;
        }

        .hero p {
          font-size: 1.1rem;
          margin-bottom: 2rem;
        }

        .hero-stats {
          flex-direction: column;
          gap: 30px;
          margin: 2rem 0;
        }

        .hero-stat-number {
          font-size: 2.5rem;
        }

        .hero-stat-label {
          font-size: 0.9rem;
        }

        .cta-button {
          padding: 15px 30px;
          font-size: 1.1rem;
        }

        .stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }

        .steps,
        .benefits-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .section-title {
          font-size: 2rem;
          margin-bottom: 40px;
        }

        .stat-item,
        .step,
        .benefit {
          padding: 25px 20px;
        }

        .stat-number {
          font-size: 2.5rem;
        }

        .step-icon {
          font-size: 2.5rem;
        }

        .benefit-icon {
          font-size: 2rem;
        }

        /* Form mobile adaptations */
        .form-container {
          padding: 25px 20px;
          margin: 0 10px;
        }

        .progress-container {
          padding: 20px 15px;
        }

        .progress-header {
          flex-direction: column;
          gap: 10px;
          text-align: center;
        }

        .progress-title {
          font-size: 1.1rem;
        }

        .progress-percentage {
          font-size: 1.3rem;
        }

        .progress-steps {
          flex-direction: column;
          gap: 8px;
          text-align: center;
        }

        .progress-step {
          justify-content: center;
          font-size: 0.9rem;
        }

        .question {
          padding: 20px 15px;
          margin-bottom: 20px;
        }

        .question h3 {
          font-size: 1.1rem;
          line-height: 1.4;
        }

        .question p {
          font-size: 0.95rem;
          line-height: 1.5;
        }

        .radio-group {
          flex-direction: column;
          gap: 15px;
        }

        .radio-option {
          padding: 12px 15px;
          background: #f8f9fa;
          border-radius: 8px;
          border: 2px solid transparent;
          transition: all 0.3s ease;
        }

        .radio-option:has(input:checked) {
          background: #e3f2fd;
          border-color: #667eea;
        }

        .submit-btn {
          padding: 18px;
          font-size: 1.2rem;
          margin-top: 20px;
        }

        /* Testimonials mobile */
        .testimonials-container {
          flex-direction: column;
          gap: 20px;
          align-items: center;
        }

        .testimonials-container .testimonial-card {
          min-width: auto;
          max-width: 100%;
          width: 100%;
          padding: 25px 20px;
        }

        .testimonial-avatar {
          width: 50px;
          height: 50px;
          font-size: 1.3rem;
        }

        .testimonial-text {
          font-size: 0.95rem;
        }

        /* Trust signals mobile */
        .trust-signals {
          gap: 10px;
          margin: 10px 0;
        }

        .trust-item {
          font-size: 0.8rem;
          padding: 3px 8px;
        }

        .trust-item {
          font-size: 0.9rem;
        }

        /* Navigation mobile */
        nav {
          flex-direction: column;
          gap: 10px;
          text-align: center;
          min-height: auto;
          padding: 10px 0;
        }

        .logo {
          font-size: 1.4rem;
        }

        .nav-links {
          gap: 15px;
          flex-wrap: wrap;
          justify-content: center;
        }

        .nav-link {
          font-size: 0.9rem;
        }

        .nav-link.cta {
          padding: 6px 16px;
          font-size: 0.85rem;
        }

        /* Footer mobile */
        footer div[style*="grid-template-columns"] {
          grid-template-columns: 1fr !important;
          gap: 30px !important;
          text-align: center;
        }

        /* Floating CTA mobile adjustment */
        .floating-cta {
          bottom: 15px !important;
          right: 15px !important;
          padding: 12px 20px !important;
          font-size: 0.9rem !important;
        }
      }

      /* Extra small screens (phones) */
      @media (max-width: 480px) {
        nav {
          padding: 8px 0;
        }

        .logo {
          font-size: 1.2rem;
        }

        .nav-links {
          gap: 10px;
        }

        .nav-link {
          font-size: 0.8rem;
        }

        .nav-link.cta {
          padding: 5px 12px;
          font-size: 0.8rem;
        }

        .trust-signals {
          gap: 8px;
          flex-wrap: wrap;
        }

        .trust-item {
          font-size: 0.75rem;
          padding: 2px 6px;
        }

        .hero {
          min-height: 100vh;
        }

        .hero-content {
          padding: 0 10px;
        }

        .hero h1 {
          font-size: 2.2rem;
          line-height: 1.2;
          margin-bottom: 1rem;
        }

        .hero p {
          font-size: 1rem;
          margin-bottom: 1.5rem;
        }

        .hero-stats {
          gap: 20px;
          margin: 1.5rem 0;
        }

        .hero-stat-number {
          font-size: 2rem;
        }

        .hero-stat-label {
          font-size: 0.8rem;
        }

        .cta-button {
          padding: 12px 25px;
          font-size: 1rem;
        }

        .section-title {
          font-size: 1.6rem;
          margin-bottom: 30px;
        }

        .form-container {
          margin: 0 5px;
          padding: 20px 15px;
        }

        .progress-container {
          padding: 15px 10px;
        }

        .progress-title {
          font-size: 1rem;
        }

        .progress-percentage {
          font-size: 1.2rem;
        }

        .progress-bar-container {
          height: 10px;
        }

        .progress-steps {
          gap: 5px;
        }

        .progress-step {
          font-size: 0.8rem;
        }

        .progress-step i {
          font-size: 0.9rem;
        }

        .question {
          padding: 15px 10px;
        }

        .question h3 {
          font-size: 1rem;
          margin-bottom: 10px;
        }

        .question p {
          font-size: 0.9rem;
        }

        .radio-option {
          padding: 10px 12px;
          font-size: 0.95rem;
        }

        .submit-btn {
          padding: 15px;
          font-size: 1.1rem;
        }

        .stat-number {
          font-size: 2rem;
        }

        .stats-grid {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .step h3 {
          font-size: 1.2rem;
        }

        .step p {
          font-size: 0.9rem;
        }

        /* Encouragement message mobile */
        .encouragement-message {
          margin: 15px 0 !important;
          padding: 12px 15px !important;
          font-size: 0.9rem !important;
        }

        /* Testimonials extra small */
        .testimonials-container .testimonial-card {
          padding: 20px 15px;
        }

        .testimonial-avatar {
          width: 45px;
          height: 45px;
          font-size: 1.2rem;
        }

        .testimonial-text {
          font-size: 0.9rem;
        }

        .testimonial-author {
          font-size: 0.95rem;
        }

        .testimonial-location {
          font-size: 0.8rem;
        }
      }

      /* Tutorial Modal Styles */
      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10000;
        animation: fadeIn 0.3s ease;
      }

      .modal-overlay.show {
        display: flex;
      }

      .modal-content {
        background: white;
        border-radius: 20px;
        max-width: 800px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        animation: slideIn 0.3s ease;
      }

      .modal-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px 30px;
        border-radius: 20px 20px 0 0;
        position: relative;
      }

      .modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
      }

      .modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .modal-title {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0;
        padding-right: 60px;
      }

      .modal-subtitle {
        font-size: 1rem;
        opacity: 0.9;
        margin: 10px 0 0 0;
      }

      .modal-body {
        padding: 30px;
      }

      .tutorial-step {
        margin-bottom: 40px;
        border: 2px solid #f0f0f0;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
      }

      .tutorial-step:hover {
        border-color: #667eea;
        box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
      }

      .step-header {
        background: #f8f9fa;
        padding: 20px 25px;
        border-bottom: 1px solid #e9ecef;
      }

      .step-number {
        display: inline-block;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-align: center;
        line-height: 35px;
        font-weight: bold;
        margin-right: 15px;
      }

      .step-title {
        font-size: 1.3rem;
        font-weight: bold;
        color: #333;
        display: inline-block;
        vertical-align: top;
        margin-top: 5px;
      }

      .step-content {
        padding: 25px;
      }

      .step-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin: 15px 0;
        border: 2px solid #e9ecef;
      }

      .step-description {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 15px;
      }

      .step-tips {
        background: #e8f4fd;
        border-left: 4px solid #667eea;
        padding: 15px 20px;
        border-radius: 0 10px 10px 0;
        margin-top: 15px;
      }

      .step-tips h4 {
        color: #667eea;
        margin: 0 0 10px 0;
        font-size: 1rem;
      }

      .step-tips ul {
        margin: 0;
        padding-left: 20px;
      }

      .step-tips li {
        margin-bottom: 5px;
        color: #555;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      @keyframes slideIn {
        from {
          opacity: 0;
          transform: translateY(-50px) scale(0.9);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      /* Modal Mobile Styles */
      @media (max-width: 768px) {
        .modal-content {
          width: 95%;
          max-height: 95vh;
          margin: 10px;
        }

        .modal-header {
          padding: 20px 25px;
        }

        .modal-title {
          font-size: 1.5rem;
          padding-right: 50px;
        }

        .modal-subtitle {
          font-size: 0.9rem;
        }

        .modal-body {
          padding: 20px;
        }

        .tutorial-step {
          margin-bottom: 30px;
        }

        .step-header {
          padding: 15px 20px;
        }

        .step-number {
          width: 30px;
          height: 30px;
          line-height: 30px;
          font-size: 0.9rem;
        }

        .step-title {
          font-size: 1.1rem;
        }

        .step-content {
          padding: 20px;
        }

        .step-image {
          max-width: 100%;
          height: 150px;
        }

        .step-description {
          font-size: 0.95rem;
        }

        .step-tips {
          padding: 12px 15px;
        }

        .step-tips h4 {
          font-size: 0.9rem;
        }

        .step-tips li {
          font-size: 0.9rem;
        }
      }

      @media (max-width: 480px) {
        .modal-content {
          width: 98%;
          border-radius: 15px;
        }

        .modal-header {
          padding: 15px 20px;
          border-radius: 15px 15px 0 0;
        }

        .modal-title {
          font-size: 1.3rem;
        }

        .modal-close {
          width: 35px;
          height: 35px;
          font-size: 1.5rem;
        }

        .modal-body {
          padding: 15px;
        }

        .step-header {
          padding: 12px 15px;
        }

        .step-content {
          padding: 15px;
        }

        .step-image {
          height: 120px;
        }
      }

      /* Enhanced Section Styles */
      .section-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 16px;
        background: rgba(102, 126, 234, 0.1);
        border-radius: 50px;
        color: #667eea;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 16px;
      }

      .section-badge i {
        margin-right: 8px;
      }

      /* Enhanced Stats Grid */
      .stats-grid-enhanced {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
      }

      .stat-card {
        background: white;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(102, 126, 234, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }

      .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(45deg, #667eea, #764ba2);
      }

      .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
      }

      .stat-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 1.5rem;
      }

      .stat-content .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #333;
        margin-bottom: 8px;
        display: block;
      }

      .stat-content .stat-label {
        font-size: 1.1rem;
        font-weight: 600;
        color: #667eea;
        margin-bottom: 5px;
        display: block;
      }

      .stat-content .stat-description {
        font-size: 0.9rem;
        color: #666;
        opacity: 0.8;
      }

      /* Mobile adaptations for enhanced sections */
      @media (max-width: 768px) {
        .stats-grid-enhanced {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }

        .stat-card {
          padding: 30px 20px;
        }

        .stat-icon {
          width: 50px;
          height: 50px;
          font-size: 1.3rem;
        }

        .stat-content .stat-number {
          font-size: 2rem;
        }

        .stat-content .stat-label {
          font-size: 1rem;
        }
      }

      @media (max-width: 480px) {
        .stats-grid-enhanced {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .stat-card {
          padding: 25px 15px;
        }

        .stat-icon {
          width: 45px;
          height: 45px;
          font-size: 1.2rem;
        }

        .stat-content .stat-number {
          font-size: 1.8rem;
        }
      }

      /* Contact Modal Styles */
      .contact-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 10001;
        animation: fadeIn 0.3s ease;
      }

      .contact-modal-overlay.show {
        display: flex;
      }

      .contact-modal-content {
        background: white;
        border-radius: 20px;
        max-width: 700px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        animation: slideIn 0.3s ease;
      }

      .contact-modal-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px 30px;
        border-radius: 20px 20px 0 0;
        position: relative;
        text-align: center;
      }

      .contact-modal-close {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
      }

      .contact-modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
      }

      .contact-modal-title {
        font-size: 1.8rem;
        font-weight: bold;
        margin: 0;
      }

      .contact-modal-subtitle {
        font-size: 1rem;
        opacity: 0.9;
        margin: 10px 0 0 0;
      }

      .contact-modal-body {
        padding: 30px;
      }

      .contact-section {
        margin-bottom: 30px;
        text-align: center;
      }

      .contact-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        color: white;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        margin: 10px;
      }

      .telegram-button {
        background: linear-gradient(45deg, #0088cc, #229ED9);
        box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
      }

      .telegram-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
        color: white;
        text-decoration: none;
      }

      .whatsapp-button {
        background: linear-gradient(45deg, #25D366, #128C7E);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
      }

      .whatsapp-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
        color: white;
        text-decoration: none;
      }

      .telegram-icon {
        font-size: 1.3rem;
      }

      .example-photos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 20px;
      }

      @media (max-width: 900px) {
        .example-photos {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      .photo-example {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        border: 2px solid #e9ecef;
      }

      .photo-example img {
        width: 100%;
        max-width: 200px;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        border: 2px solid #dee2e6;
      }

      .photo-example h4 {
        color: #667eea;
        margin-bottom: 10px;
        font-size: 1.1rem;
      }

      .photo-example p {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.4;
      }

      .contact-info {
        background: #e8f4fd;
        border-left: 4px solid #667eea;
        padding: 20px;
        border-radius: 0 10px 10px 0;
        margin: 20px 0;
      }

      .contact-info h4 {
        color: #667eea;
        margin: 0 0 10px 0;
        font-size: 1.1rem;
      }

      .contact-info p {
        margin: 0;
        color: #555;
        line-height: 1.6;
      }

      /* Contact Modal Mobile Styles */
      @media (max-width: 768px) {
        .contact-modal-content {
          width: 95%;
          max-height: 95vh;
          margin: 10px;
        }

        .contact-modal-header {
          padding: 20px 25px;
        }

        .contact-modal-title {
          font-size: 1.5rem;
          padding-right: 50px;
        }

        .contact-modal-subtitle {
          font-size: 0.9rem;
        }

        .contact-modal-body {
          padding: 20px;
        }

        .example-photos {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .photo-example {
          padding: 15px;
        }

        .photo-example img {
          height: 120px;
        }

        .contact-button {
          padding: 12px 25px;
          font-size: 1rem;
          margin: 8px;
        }

        .contact-info {
          padding: 15px;
        }
      }

      @media (max-width: 480px) {
        .contact-modal-content {
          width: 98%;
          border-radius: 15px;
        }

        .contact-modal-header {
          padding: 15px 20px;
          border-radius: 15px 15px 0 0;
        }

        .contact-modal-title {
          font-size: 1.3rem;
        }

        .contact-modal-close {
          width: 35px;
          height: 35px;
          font-size: 1.5rem;
        }

        .contact-modal-body {
          padding: 15px;
        }

        .photo-example img {
          height: 100px;
        }

        .contact-button {
          padding: 10px 20px;
          font-size: 0.9rem;
          margin: 5px;
        }
      }

      /* Success Cases Section Styles */
      .success-cases-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
      }

      .success-cases-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23667eea" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23764ba2" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        pointer-events: none;
      }

      .feedback-slider-container {
        position: relative;
        max-width: 800px;
        margin: 0 auto 80px;
        overflow: hidden;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      }

      .feedback-slider {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
      }

      .feedback-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
      }

      .feedback-slide.active {
        opacity: 1;
        z-index: 2;
      }

      /* Ensure only the first slide is visible before JavaScript loads */
      .feedback-slide:first-child {
        opacity: 1;
        z-index: 2;
      }

      /* Hide all other slides by default */
      .feedback-slide:not(:first-child) {
        opacity: 0;
        z-index: 1;
      }


      .feedback-item {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: white;
        height: 100%;
        width: 100%;
      }

      .feedback-image {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
      }

      .feedback-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
      }

      .feedback-overlay {
        display: none;
      }

      .feedback-content {
        display: none;
      }

      .feedback-content i.fa-quote-left {
        font-size: 2.5rem;
        margin-bottom: 20px;
        opacity: 0.8;
      }

      .feedback-content p {
        font-size: 1.3rem;
        font-weight: 500;
        line-height: 1.6;
        margin-bottom: 20px;
        font-style: italic;
      }

      .feedback-rating {
        display: flex;
        justify-content: center;
        gap: 8px;
      }

      .feedback-rating i {
        color: #ffd700;
        font-size: 1.5rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
      }


      /* Slider Indicators */
      .slider-indicators {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 40px;
        padding: 20px 0;
        position: relative;
        z-index: 1;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0 0 20px 20px;
        backdrop-filter: blur(10px);
      }

      .indicator {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(102, 126, 234, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }

      .indicator.active {
        background: #667eea;
        transform: scale(1.3);
        border-color: rgba(102, 126, 234, 0.5);
        box-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
      }

      .indicator:hover {
        background: #667eea;
        transform: scale(1.2);
        border-color: rgba(102, 126, 234, 0.3);
      }

      .success-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-top: 60px;
        position: relative;
        z-index: 1;
      }

      .stat-item {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid rgba(102, 126, 234, 0.1);
      }

      .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: #667eea;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .stat-label {
        font-size: 1.1rem;
        color: #64748b;
        font-weight: 500;
      }

      /* Mobile Responsive Styles for Success Cases */
      @media (max-width: 768px) {
        .success-cases-section {
          padding: 60px 0;
        }

        .feedback-slider-container {
          margin: 0 20px 60px;
          max-width: none;
        }

        .feedback-slider {
          height: 350px;
        }

        .feedback-content p {
          font-size: 1.1rem;
        }

        .feedback-content i.fa-quote-left {
          font-size: 2rem;
        }


        .success-stats {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
          margin-top: 40px;
        }

        .stat-item {
          padding: 30px 20px;
        }

        .stat-number {
          font-size: 2rem;
        }

        .stat-label {
          font-size: 1rem;
        }
      }

      @media (max-width: 480px) {
        .feedback-slider-container {
          margin: 0 10px 50px;
        }

        .feedback-slider {
          height: 300px;
        }

        .feedback-content p {
          font-size: 1rem;
        }

        .feedback-content i.fa-quote-left {
          font-size: 1.8rem;
        }



        .success-stats {
          grid-template-columns: 1fr;
        }
      }

      /* Application Form Styles */
      .application-form-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      }

      .form-container {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(102, 126, 234, 0.1);
      }

      .form-progress {
        margin-bottom: 40px;
      }

      .progress-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }

      .progress-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: #667eea;
      }

      .progress-percentage {
        font-size: 1.1rem;
        font-weight: bold;
        color: #667eea;
      }

      .progress-bar-container {
        width: 100%;
        height: 8px;
        background: #e2e8f0;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 20px;
      }

      .progress-bar {
        height: 100%;
        background: linear-gradient(90deg, #667eea, #764ba2);
        border-radius: 10px;
        transition: width 0.5s ease;
        width: 0%;
      }

      .progress-steps {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.9rem;
        color: #94a3b8;
        transition: color 0.3s ease;
      }

      .progress-step.active {
        color: #667eea;
      }

      .progress-step.completed {
        color: #10b981;
      }

      .progress-step i {
        font-size: 1.2rem;
        margin-bottom: 5px;
      }

      .question-card {
        background: #f8fafc;
        border-radius: 15px;
        padding: 30px;
        margin-bottom: 25px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        display: none;
      }

      .question-card.active {
        display: block;
        border-color: #667eea;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
      }

      .question-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 15px;
        line-height: 1.4;
      }

      .question-description {
        color: #64748b;
        margin-bottom: 25px;
        line-height: 1.6;
      }

      .radio-group {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
      }

      .radio-option {
        flex: 1;
        position: relative;
        cursor: pointer;
      }

      .radio-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
      }

      .radio-option-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 25px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        transition: all 0.3s ease;
        font-weight: 500;
        color: #64748b;
      }

      .radio-option input[type="radio"]:checked + .radio-option-content {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        border-color: #667eea;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
      }

      .radio-option:hover .radio-option-content {
        border-color: #667eea;
        transform: translateY(-1px);
      }

      .form-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
      }

      .nav-button {
        padding: 12px 30px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1rem;
      }

      .nav-button.prev {
        background: #f1f5f9;
        color: #64748b;
      }

      .nav-button.prev:hover {
        background: #e2e8f0;
        transform: translateY(-2px);
      }

      .nav-button.next {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
      }

      .nav-button.next:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
      }

      .nav-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none !important;
      }

      .promoter-option {
        background: #fef3c7;
        border: 2px solid #f59e0b;
        border-radius: 15px;
        padding: 25px;
        margin-top: 20px;
        display: none;
      }

      .promoter-option.show {
        display: block;
        animation: slideIn 0.5s ease;
      }

      .promoter-title {
        color: #92400e;
        font-weight: 600;
        margin-bottom: 10px;
      }

      .promoter-description {
        color: #78350f;
        margin-bottom: 15px;
      }

      .data-notice {
        background: #e0f2fe;
        border: 1px solid #0284c7;
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        font-size: 0.9rem;
        color: #0c4a6e;
      }

      .data-notice strong {
        color: #0369a1;
      }

      /* Toast Notification Styles */
      .toast-notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 15px 25px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        z-index: 10002;
        transform: translateX(400px);
        opacity: 0;
        transition: all 0.3s ease;
        max-width: 350px;
        font-weight: 500;
      }

      .toast-notification.show {
        transform: translateX(0);
        opacity: 1;
      }

      .toast-notification.success {
        background: linear-gradient(135deg, #10b981, #059669);
      }

      .toast-notification.info {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      }

      .toast-notification i {
        margin-right: 10px;
        font-size: 1.1rem;
      }

      /* Toast Notification Styles */
      .toast-notification {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 15px 25px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        z-index: 10002;
        transform: translateX(400px);
        opacity: 0;
        transition: all 0.3s ease;
        max-width: 350px;
        font-weight: 500;
      }

      .toast-notification.show {
        transform: translateX(0);
        opacity: 1;
      }

      .toast-notification.success {
        background: linear-gradient(135deg, #10b981, #059669);
      }

      .toast-notification.info {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      }

      .toast-notification i {
        margin-right: 10px;
        font-size: 1.1rem;
      }

      /* Mobile Form Styles */
      @media (max-width: 768px) {
        .application-form-section {
          padding: 60px 0;
        }

        .form-container {
          margin: 0 15px;
          padding: 25px;
          border-radius: 15px;
        }

        .question-card {
          padding: 20px;
        }

        .question-title {
          font-size: 1.1rem;
        }

        .radio-group {
          flex-direction: column;
          gap: 10px;
        }

        .radio-option-content {
          padding: 12px 20px;
        }

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

        .nav-button {
          width: 100%;
          padding: 15px;
        }

        .progress-steps {
          flex-wrap: wrap;
          gap: 10px;
        }

        .progress-step {
          font-size: 0.8rem;
        }
      }

      @media (max-width: 480px) {
        .form-container {
          margin: 0 10px;
          padding: 20px;
        }

        .question-title {
          font-size: 1rem;
        }

        .progress-steps {
          justify-content: center;
        }

        .progress-step {
          font-size: 0.7rem;
        }

        .toast-notification {
          top: 10px;
          right: 10px;
          left: 10px;
          max-width: none;
          padding: 12px 20px;
          font-size: 0.9rem;
        }
      }