:root {
      --primary: #ff7b00;
      --primary-dark: #e56f00;
      --secondary: #1a365d;
      --accent: #2d3748;
      --light: #f8f9fa;
      --gray: #6c757d;
      --success: #28a745;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }

    * {
      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-color: #f9f9f9;
      overflow-x: hidden;
    }

    /* Header & Hero */
    .hero {
      background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%), 
                  url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      padding: 120px 20px 100px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 20px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
      line-height: 1.2;
    }

    .hero h2 {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0.9;
    }

    .highlight {
      background: linear-gradient(120deg, var(--primary) 0%, #ff9a3d 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-weight: 700;
    }

    .stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 40px 0;
      flex-wrap: wrap;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      display: block;
    }

    .stat-label {
      font-size: 1rem;
      opacity: 0.9;
    }

    .buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
      flex-wrap: wrap;
    }

    .btn {
      background: var(--primary);
      color: white;
      padding: 18px 35px;
      font-size: 1.1rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(255, 123, 0, 0.3);
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: none;
      cursor: pointer;
      min-width: 220px;
    }

    .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(255, 123, 0, 0.4);
    }

    .btn-secondary {
      background: transparent;
      border: 2px solid white;
      box-shadow: none;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,0.1);
      transform: translateY(-5px);
    }

    .btn i {
      font-size: 1.2rem;
    }

    /* Sections */
    .section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 4px;
      background: var(--primary);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Features */
    .features, .steps, .reviews, .packages {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .feature-box, .step-box, .review-box, .package-box {
      background: white;
      padding: 35px 30px;
      border-radius: 16px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .feature-box:hover, .step-box:hover, .review-box:hover, .package-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .feature-icon, .step-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .feature-box h4, .step-box h4, .review-box h4, .package-box h4 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--secondary);
    }

    .feature-box p, .step-box p, .review-box p, .package-box p {
      color: var(--gray);
      margin-bottom: 0;
    }

    .step-box {
      text-align: center;
      border-top: 5px solid var(--primary);
    }

    .step-number {
      display: inline-block;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      line-height: 50px;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    /* Reviews */
    .review-box {
      border-left: 5px solid var(--primary);
    }

    .review-rating {
      color: #ffc107;
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .review-author {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--secondary);
      margin-right: 15px;
    }

    /* Packages */
    .package-box {
      border: 2px solid #e9ecef;
    }

    .package-box:hover {
      border-color: var(--primary);
    }

    .package-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .package-badge {
      background: var(--success);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
    }

    .package-price {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--secondary);
      margin: 15px 0;
    }

    .package-details {
      list-style: none;
      margin: 20px 0;
    }

    .package-details li {
      padding: 8px 0;
      border-bottom: 1px solid #f1f1f1;
      display: flex;
      align-items: center;
    }

    .package-details li i {
      color: var(--primary);
      margin-right: 10px;
      font-size: 0.9rem;
    }

    .package-cta {
      margin-top: 25px;
      text-align: center;
    }

    .btn-small {
      padding: 12px 25px;
      font-size: 1rem;
      min-width: auto;
      width: 100%;
    }

    /* FAQ */
    .faq {
      background: var(--light);
      border-radius: 16px;
      padding: 40px;
      margin-top: 40px;
    }

    .faq-item {
      margin-bottom: 25px;
      border-bottom: 1px solid #dee2e6;
      padding-bottom: 25px;
    }

    .faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .faq-question {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 10px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question i {
      color: var(--primary);
      transition: var(--transition);
    }

    .faq-answer {
      color: var(--gray);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    /* Footer */
    .footer {
      background: var(--secondary);
      color: white;
      padding: 60px 20px 30px;
      text-align: center;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      color: white;
    }

    .footer-contact {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.1rem;
    }

    .contact-item i {
      color: var(--primary);
      font-size: 1.3rem;
    }

    .copyright {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
	  .hero{
		padding: 40px 20px 100px;
	  }
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero h2 {
        font-size: 1.2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 300px;
      }
      
      .stats {
        gap: 30px;
      }
      
      .stat-number {
        font-size: 2rem;
      }
    }
	
	@media (max-width: 420px) {
	  .hero{
		padding: 40px 20px 100px;
	  }
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero h2 {
        font-size: 1.2rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 300px;
      }
      
      .stats {
        gap: 30px;
      }
      
      .stat-number {
        font-size: 1.5rem;
		line-height: 1.5rem;
      }
	  .stats {
		  margin: 25px 0;
		}
	  .hero h2{
		  margin-bottom: 25px
	  }
    }

    /* Animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate {
      animation: fadeInUp 0.6s ease forwards;
    }