    body {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #2d3748;
      overflow-x: hidden;
      height: 100%;
    }

    html {
      height: 100%;
    }

    *, *::before, *::after {
      box-sizing: border-box;
    }
    :root {
      --primary: rgb(255, 119, 0);
      --primary-light: #3b82f6;
      --dark: #1f2937;
      --gray: #6b7280;
      --light: #f9fafb;
      --white: #ffffff;
      --border: #e5e7eb;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
      --radius: 12px;
      --transition: all 0.3s ease;
    }

    /* Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 19px 0;
      z-index: 1000;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 28px;
      font-weight: 800;
      color: #097a3e;
      text-decoration: none;
    }

    .logo-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 6px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(9,122,62,0.12), rgba(30,157,157,0.18));
      box-shadow: inset 0 1px 2px rgba(255,255,255,0.35), 0 6px 14px rgba(0,0,0,0.06);
    }

    .logo-text {
      letter-spacing: 0.3px;
      color: #0c6b6b;
    }

    /* Logo image inside navbar */
    .logo img {
      height: 48px;
      width: auto;
      display: block;
      object-fit: contain;
      transition: transform 220ms ease, filter 220ms ease;
    }

    .logo:hover img {
      transform: scale(1.08);
      filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
    }

    .logo:active img {
      transform: scale(0.96);
      filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
    }

    .nav-menu {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 32px;
    }

    .nav-item {
      cursor: pointer;
      padding: 8px 16px;
      border-radius: 8px;
      transition: all 0.3s ease;
      color: #1e9d9d;
      font-weight: 500;
    }

    .nav-item:hover, .nav-item:active {
      background: rgb(255, 119, 0);
      color: #ffffff;
    }

    /* Ensure nav anchors match nav-item color (remove default blue) */
    .nav-item a {
      color: inherit;
      text-decoration: none;
      display: inline-block;
    }

    .nav-item a:hover,
    .nav-item a:active,
    .nav-item a:focus {
      color: inherit;
      text-decoration: none;
      outline: none;
    }

    /* Active state same as hover */
    .nav-item.active {
      background: #ebb025;
      color: #ffffff;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #2563eb;
    }

    /* Page Container */
    .page-container {
      margin-top: 10px;
      min-height: calc(100% - 80px);
    }

    .page {
      display: none;
      animation: fadeIn 0.5s ease-in-out;
    }

    .page.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #1e40af 0%, #3bf683 50%, #60a5fa 100%);
      padding: 190px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::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"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.15)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="10" r="1.2" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
      animation: float 20s linear infinite;
    }

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

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .hero h1 {
      font-size: 56px;
      font-weight: 800;
      color: #ffffff;
      margin: 0 0 24px 0;
      line-height: 1.2;
    }

    .hero p {
      font-size: 24px;
      color: rgba(255, 255, 255, 0.9);
      margin: 0 0 40px 0;
      line-height: 1.6;
    }

    .cta-button {
      background: #ffffff;
      color: #2563eb;
      padding: 16px 32px;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    /* Section Styles */
    .section {
      padding: 100px 24px;
    }

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

    .section-title {
      font-size: 42px;
      font-weight: 700;
      color: #1a202c;
      text-align: center;
      margin: 0 0 60px 0;
    }

    .section-subtitle {
      font-size: 20px;
      color: #4a5568;
      text-align: center;
      margin: 0 0 80px 0;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* About Section */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-text h3 {
      font-size: 32px;
      font-weight: 700;
      color: #1e9d9d;
      margin: 0 0 24px 0;
    }

    .about-text p {
      font-size: 18px;
      line-height: 1.8;
      color: #4a5568;
      margin: 0 0 24px 0;
    }

    .about-actions {
      margin-top: 16px;
    }

    .about-read-more {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 26px;
      border-radius: 999px;
      background: rgb(255, 119, 0);
      color: #ffffff;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 12px 30px rgba(14, 165, 233, 0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .about-read-more:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(14, 165, 233, 0.32);
    }

    .about-read-more:active {
      transform: translateY(0);
      box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
    }

    .about-read-more-icon {
      font-size: 18px;
      line-height: 1;
      transform: translateX(0);
      transition: transform 0.3s ease;
    }

    .about-read-more:hover .about-read-more-icon {
      transform: translateX(4px);
    }

    .about-visual {
      background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
      border-radius: 20px;
      padding: 60px;
      text-align: center;
      position: relative;
    }

    .about-icon {
      font-size: 80px;
      margin-bottom: 20px;
    }

    /* Services Grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }

    .service-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 40px 32px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    }

    .service-icon{
      font-size: 48px;
      margin-bottom: 24px;
    }
    .service-icon img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25eb46 0%, #3b82f6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      margin: 0 auto 24px;
      transition: transform 0.3s ease;
    }

    .service-card h3 {
      font-size: 24px;
      font-weight: 700;
      color: #1e9d9d;
      margin: 0 0 16px 0;
    }

    .service-card p {
      font-size: 16px;
      line-height: 1.6;
      color: #4a5568;
      margin: 0;
    }

    /* Products Grid */
        /* === Product Section === */
    .products {
      padding: 5rem 0;
      background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .product-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      opacity: 0;
      transform: translateY(30px);
    }
    .product-card.visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .product-img {
      height: 180px;
      background: linear-gradient(45deg, #e0e7ff, #c7d2fe);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .product-img i {
      font-size: 4rem;
      color: var(--primary);
      opacity: 0.7;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-img img {
      transform: scale(1.1);
    }

    .product-content {
      padding: 1.5rem;
    }
    .product-name {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #1e9d9d;
    }
    .product-tagline {
      font-size: 0.95rem;
      color: var(--dark);
      font-weight: 500;
      margin-bottom: 0.75rem;
    }
    .product-desc {
      font-size: 0.9rem;
      color: var(--gray);
      margin-bottom: 1rem;
    }
    .btn {
      display: inline-block;
      padding: 0.65rem 1.25rem;
      background:#1e9d9d;
      color: white;
      border-radius: 8px;
      font-size: 0.9rem;
      font-weight: 500;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .btn:hover {
      background: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Team Grid */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .team-member {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    }

    .team-avatar img{
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25eb46 0%, #3b82f6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 48px;
      margin: 0 auto 24px;
      transition: transform 0.3s ease;
    }

    .team-member:hover .team-avatar {
      transform: scale(1.1);
    }

    .team-member h3 {
      font-size: 24px;
      font-weight: 700;
      color: #1e9d9d;
      margin: 0 0 8px 0;
    }

    .team-role {
      font-size: 16px;
      color: #2563eb;
      font-weight: 600;
      margin: 0 0 16px 0;
    }

    .team-member p {
      font-size: 14px;
      line-height: 1.6;
      color: #4a5568;
      margin: 0 0 24px 0;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #f7fafc;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #4a5568;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: #2563eb;
      color: #ffffff;
    }

    /* Contact Form */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 32px;
      font-weight: 700;
      color: #1e9d9d;
      margin: 0 0 24px 0;
    }

    .contact-info p {
      font-size: 18px;
      line-height: 1.8;
      color: #4a5568;
      margin: 0 0 32px 0;
    }

    .contact-item {
      display: flex;
      /* align-items: center; */
      margin-bottom: 24px;
      text-align: left;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25eb46 0%, #3b82f6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      margin-right: 16px;
      font-size: 20px;
    }

    .contact-form {
      background: #ffffff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .form-group {
      margin-bottom: 24px;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      color: #1a202c;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 16px;
      border: 2px solid #e2e8f0;
      border-radius: 12px;
      font-size: 16px;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      background: linear-gradient(135deg, #25eb46 0%, #3b82f6 100%);
      color: #ffffff;
      padding: 16px 32px;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .submit-btn:hover:not(:disabled) {
      background: #1d4ed8;
      transform: translateY(-2px);
    }

    .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .form-message {
      margin-top: 16px;
      padding: 12px;
      border-radius: 8px;
      text-align: center;
      font-weight: 600;
    }

    .form-message.success {
      background: #d1fae5;
      color: #065f46;
      border: 1px solid #a7f3d0;
    }

    .form-message.error {
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fca5a5;
    }

    /* Alert styles for success and error messages */
    .alert {
      padding: 12px 16px;
      border-radius: 8px;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .alert-success {
      background: #d1fae5;
      color: #065f46;
      border: 1px solid #a7f3d0;
    }

    .alert-danger {
      background: #fee2e2;
      color: #991b1b;
      border: 1px solid #fca5a5;
    }

    /* Testimonials Section */
    .testimonials-section {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 32px;
      margin-bottom: 80px;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, #25eb46 0%, #3b82f6 100%);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover::before {
      transform: scaleX(1);
    }

    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 50px rgba(37, 99, 235, 0.15);
    }

    .testimonial-content {
      margin-bottom: 24px;
    }

    .quote-icon {
      font-size: 32px;
      margin-bottom: 16px;
      opacity: 0.7;
    }

    .testimonial-content p {
      font-size: 16px;
      line-height: 1.7;
      color: #4a5568;
      margin: 0;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }

    .author-avatar img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25eb46 0%, #3b82f6 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-right: 16px;
      flex-shrink: 0;
    }

    .author-info h4 {
      font-size: 18px;
      font-weight: 700;
      color: #1e9d9d;
      margin: 0 0 4px 0;
    }

    .author-info span {
      font-size: 14px;
      color: #718096;
      display: block;
      margin-bottom: 8px;
    }

    .company-logo {
      font-size: 20px;
      opacity: 0.8;
    }

    .rating {
      text-align: center;
    }

    .stars {
      font-size: 18px;
      letter-spacing: 2px;
    }

    /* Client Logos */
    .client-logos {
      text-align: center;
      padding: 60px 0;
      border-top: 1px solid #e2e8f0;
    }

    .client-logos h3 {
      font-size: 24px;
      font-weight: 700;
      color: #1a202c;
      margin: 0 0 40px 0;
    }

    .logos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      max-width: 800px;
      margin: 0 auto;
    }

    .logo-item {
      background: #ffffff;
      padding: 24px;
      border-radius: 12px;
      font-size: 18px;
      font-weight: 600;
      color: #4a5568;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .logo-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
      color: #2563eb;
    }

    /* Footer */
    .footer {
      background:linear-gradient(
255deg, #25eb46 0%, #f6683b 100%);
      color: #ffffff;
      padding: 80px 24px 30px;
      position: relative;
      overflow: hidden;
      border-top-left-radius: 50px;
      border-top-right-radius: 50px;  
    }

    .footer::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"><circle cx="20" cy="20" r="1" fill="rgba(59,130,246,0.1)"/><circle cx="80" cy="40" r="0.8" fill="rgba(59,130,246,0.15)"/><circle cx="40" cy="70" r="0.6" fill="rgba(59,130,246,0.1)"/></svg>') repeat;
      animation: floatSlow 25s linear infinite;
    }

    @keyframes floatSlow {
      0% { transform: translateY(0) translateX(0); }
      100% { transform: translateY(-50px) translateX(25px); }
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .footer-top {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 60px;
      margin-bottom: 60px;
      text-align: left;
    }

    .footer-section h3 {
      font-size: 20px;
      font-weight: 700;
      color: #1e9d9d;
      margin: 0 0 24px 0;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-section li {
      margin-bottom: 12px;
    }

    .footer-section a {
      color: black;
      text-decoration: none;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-section a:hover {
      color: #3b82f6;
      transform: translateX(4px);
    }

    .footer-logo {
      font-size: 32px;
      font-weight: 800;
      color: #1e9d9d;
      margin-bottom: 16px;
    }

    .footer-description {
      color: black;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .social-icons {
      display: flex;
      gap: 16px;
    }

    .social-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(59, 130, 246, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #3b82f6;
      text-decoration: none;
      font-size: 20px;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .social-icon:hover {
      background: rgb(255, 119, 0);;
      color: #ffffff;
      transform: translateY(-2px);
      border-color: #3b82f6;
    }

    .newsletter {
      background: rgba(59, 130, 246, 0.1);
      padding: 32px;
      border-radius: 16px;
      text-align: center;
    }

    .newsletter h3 {
      margin-bottom: 16px;
    }

    .newsletter p {
      color: #a0aec0;
      margin-bottom: 24px;
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 400px;
      margin: 0 auto;
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 16px;
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.05);
      color: #ffffff;
      font-size: 16px;
    }

    .newsletter-input::placeholder {
      color: #a0aec0;
    }

    .newsletter-input:focus {
      outline: none;
      border-color: #3b82f6;
    }

    .newsletter-btn {
      background: #3b82f6;
      color: #ffffff;
      border: none;
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      background: #2563eb;
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(250, 248, 248, 0.974);
      padding-top: 32px;
      text-align: center;
      color: black;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-link {
      color: black;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: #3b82f6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero h1 {
        font-size: 36px;
      }

      .hero p {
        font-size: 18px;
      }

      .section-title {
        font-size: 32px;
      }

      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .services-grid,
      .products-grid,
      .team-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        flex-direction: column;
        gap: 16px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 80px 24px;
      }

      .section {
        padding: 60px 24px;
      }

      .hero h1 {
        font-size: 28px;
      }

      .section-title {
        font-size: 24px;
      }
    }