<style>
    /* CSS Reset and Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    :root {
      --primary: #4a6de5;
      --secondary: #ff7b54;
      --dark: #333;
      --light: #f8f9fa;
      --gray: #6c757d;
      --success: #28a745;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      line-height: 1.6;
      color: var(--dark);
      background-color: #fff;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    /* Header & Navigation */
    header {
      background-color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }
    .logo {
      display: flex;
      align-items: center;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
    }
    .logo span {
      color: var(--secondary);
    }
    .nav-links {
      display: flex;
      list-style: none;
    }
    .nav-links li {
      margin-left: 30px;
    }
    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-links a:hover {
      color: var(--primary);
    }
    .nav-links a.active {
      color: var(--primary);
      font-weight: 600;
    }
    .hamburger {
      display: none;
      cursor: pointer;
    }
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #4a6de5, #6a8af0);
      color: white;
      padding: 150px 0 100px;
      text-align: center;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--secondary);
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }
    .btn:hover {
      background-color: #ff6b3d;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    /* Section Styling */
    section {
      padding: 80px 0;
    }
    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    .section-title p {
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
    }
    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    .service-card {
      background-color: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
      text-align: center;
    }
    .service-card:hover {
      transform: translateY(-10px);
    }
    .service-icon {
      width: 70px;
      height: 70px;
      background-color: rgba(74, 109, 229, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
      font-size: 1.8rem;
    }
    .service-card h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }
    /* About Section */
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    .about-text h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: var(--primary);
    }
    .about-text p {
      margin-bottom: 20px;
    }
    .about-image {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
    }
    /* Contact Section */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }
    .contact-icon {
      width: 50px;
      height: 50px;
      background-color: rgba(74, 109, 229, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .contact-form {
      background-color: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    .form-control {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: border 0.3s;
    }
    .form-control:focus {
      border-color: var(--primary);
      outline: none;
    }
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    /* Footer */
    footer {
      background-color: #1a1a2e;
      color: white;
      padding: 60px 0 20px;
    }
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-column h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: white;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #b0b0b0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: white;
    }
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    .social-icon {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: background-color 0.3s;
    }
    .social-icon:hover {
      background-color: var(--primary);
    }
    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #b0b0b0;
      font-size: 0.9rem;
    }
    /* Page Content */
    .page-content {
      padding-top: 100px;
    }
    /* Responsive Design */
    @media (max-width: 992px) {
      .about-content, .contact-container {
        grid-template-columns: 1fr;
      }
      .about-image {
        order: -1;
      }
    }
    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      }
      .nav-links.active {
        left: 0;
      }
      .nav-links li {
        margin: 15px 0;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
      .section-title h2 {
        font-size: 2rem;
      }
    }
    @media (max-width: 576px) {
      .hero {
        padding: 120px 0 80px;
      }
      section {
        padding: 60px 0;
      }
      .service-card {
        padding: 20px;
      }
    }
  </style>