        :root {
          --primary: #4361ee;
          --secondary: #0166ff;
          --accent: #4895ef;
          --dark: #1a1a2e;
          --light: #f8f9fa;
          --transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
          --primary-blue: #2962FF;
          --gold-accent: #ff8400;
          --soft-white: #F9F9F9;
          --charcoal: #333333;
          --light-gray: #e0e0e0;
        }

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

        body {
          font-family: 'Poppins', sans-serif;
          background-color: var(--light);
          color: var(--dark);
          overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
          min-height: 80vh;
          display: flex;
          align-items: center;
          position: relative;
          overflow: hidden;
          background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .hero-content {
          position: relative;
          z-index: 2;
          max-width: 1200px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 1fr 1fr;
          align-items: center;
        }

        .hero-text {
          animation: fadeInUp 1s ease-out forwards;
        }

        .hero-text h1 {
          font-size: 3.5rem;
          font-weight: 800;
          line-height: 1.2;
          margin-bottom: 1.5rem;
          background: linear-gradient(90deg, var(--primary), var(--secondary));
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
        }

        .hero-text p {
          font-size: 1.2rem;
          line-height: 1.6;
          margin-bottom: 2rem;
          color: #555;
          max-width: 90%;
        }

        .cta-buttons {
          display: flex;
          gap: 1rem;
          margin-bottom: 2rem;
        }

        .btn {
          display: inline-block;
          padding: 0.8rem 2rem;
          border-radius: 50px;
          font-weight: 600;
          text-decoration: none;
          transition: var(--transition);
          position: relative;
          overflow: hidden;
          z-index: 1;
        }

        .btn-primary {
          background: linear-gradient(90deg, var(--primary), var(--secondary));
          color: white;
          box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }
        .btn-secondary {
          background: transparent;
          color: var(--primary);
          border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
          background: var(--gold-accent);
          color: white;
        }

        .hero-image {
          position: relative;
          animation: float 6s ease-in-out infinite;
        }

        .hero-image img {
          padding-right: 30px;
          margin-left: 50px;
          margin-top: 50px;
          width: 100%;
          max-width: 600px;
          height: 30rem;
          border-radius: 20px;
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
          transform: perspective(1000px) rotateY(-10deg);
          transition: var(--transition);
        }

        .hero-image:hover img {
          transform: perspective(1000px) rotateY(0deg);
        }

        .stats {
          display: flex;
          gap: 2rem;
          margin-top: 2rem;
        }

        .stat-item {
          animation: fadeIn 1s ease-out forwards;
          animation-delay: 0.3s;
          opacity: 0;
        }

        .stat-item:nth-child(2) {
          animation-delay: 0.6s;
        }

        .stat-item:nth-child(3) {
          animation-delay: 0.9s;
        }

        .stat-number {
          font-size: 2.5rem;
          font-weight: 700;
          color: var(--primary);
          margin-bottom: 0.5rem;
        }

        .stat-label {
          font-size: 0.9rem;
          color: #666;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        /* Animations */
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(30px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }

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

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

        /* Responsive Design */
        @media (max-width: 992px) {
          .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
          }
          .hero-text h1 {
            font-size: 1.8rem;
          }
          .hero-text p {
            max-width: 100%;
          }
          .cta-buttons {
            justify-content: center;
          }
          .stats {
            justify-content: center;
          }
          .hero-image img {
            width: 100%;
            max-width: 600px;
            height: 330px;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
          }
          .hero-image {
            margin-top: 2rem;
            order: 2;
          }
        }

        @media (max-width: 768px) {
          .hero-text h1 {
            font-size: 1.2rem;
          }
          .hero-text p {
            font-size: 1rem;
          }
          .stats {
            flex-direction: column;
            gap: 1rem;
          }
        }

        /* Features Section */
        .features-wrapper {
          max-width: 1200px;
          margin: 4rem auto;
          padding: 0 1rem;
        }

        .feature-block {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
          gap: 2rem;
          margin-bottom: 4rem;
        }

        @media (min-width: 769px) {
          .feature-block:nth-child(even) {
            flex-direction: row-reverse;
          }
        }

        .feature-image {
          flex: 1 1 45%;
          min-width: 280px;
        }

        .feature-image img {
          width: 100%;
          height: auto;
          border-radius: 10px;
          box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .feature-text {
          flex: 1 1 50%;
          min-width: 280px;
        }

        .feature-text h2 {
          color: #045BAA;
          font-size: 2rem;
          margin-bottom: 1rem;
        }

        .feature-text p {
          font-size: 1rem;
          line-height: 1.7;
          margin-bottom: 1.2rem;
        }

        .learn-btn {
          display: inline-block;
          background: #045BAA;
          color: #fff;
          padding: 0.6rem 1.4rem;
          border-radius: 5px;
          font-weight: 500;
          text-decoration: none;
          transition: background 0.3s ease, transform 0.2s ease;
        }

        .learn-btn:hover {
          background: #023f7d;
          transform: scale(1.05);
        }

        @media (max-width: 768px) {
          .feature-block {
            flex-direction: column;
            text-align: center;
          }
          .feature-text h2 {
            font-size: 1.5rem;
          }
          .feature-text p {
            font-size: 0.95rem;
          }
          .learn-btn {
            margin-top: 1rem;
          }
        }

        /* Footer */
        footer {
          background-color: var(--charcoal, #1f1f1f);
          color: white;
          padding: 60px 1rem 20px;
        }

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

        .footer-logo {
          font-size: 1.5rem;
          font-weight: 700;
          margin-bottom: 20px;
          display: inline-block;
        }

        .footer-logo span {
          color: var(--gold-accent, #FF9100);
        }

        .footer-about p {
          opacity: 0.85;
          margin-bottom: 20px;
          font-size: 0.95rem;
          line-height: 1.6;
        }

        .social-links {
          display: flex;
          justify-content: flex-start;
          flex-wrap: wrap;
          gap: 15px;
          margin-top: 15px;
        }

        .social-links a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background-color: #045BAA;
          border-radius: 50%;
          color: #fff;
          font-size: 1rem;
          transition: background 0.3s, transform 0.3s;
          text-decoration: none;
        }

        .social-links a:hover {
          background-color: var(--gold-accent, #FF9100);
          transform: scale(1.1);
        }

        .footer-links h3 {
          font-size: 1.2rem;
          margin-bottom: 20px;
          color: white;
        }

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

        .footer-links ul li {
          margin-bottom: 10px;
        }

        .footer-links ul li a {
          color: rgba(255, 255, 255, 0.7);
          text-decoration: none;
          transition: color 0.3s, padding 0.3s;
        }

        .footer-links ul li a:hover {
          color: var(--gold-accent, #FF9100);
          padding-left: 5px;
        }

        .newsletter input {
          width: 100%;
          padding: 12px;
          border-radius: 5px;
          border: none;
          margin-bottom: 10px;
          background-color: rgba(255, 255, 255, 0.1);
          color: white;
        }

        .newsletter input::placeholder {
          color: rgba(255, 255, 255, 0.7);
        }

        .copyright {
          text-align: center;
          padding-top: 20px;
          border-top: 1px solid rgba(255, 255, 255, 0.1);
          color: rgba(255, 255, 255, 0.7);
          font-size: 0.9rem;
        }

        @media (max-width: 768px) {
          .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
          }
          .social-links {
            justify-content: center;
          }
          .footer-links {
            margin-top: 2rem;
          }
          .newsletter input {
            max-width: 100%;
          }
        }
