:root {
        --primary: #000080;
        --primary-dark: #011348;
        --secondary: #800000;
        --dark: #020f37;
        --light: #f8fafc;
        --gray: #64748b;
        --light-gray: #f1f5f9;
      }

      /* Androgyne Font Declaration */
      @font-face {
          font-family: 'Androgyne';
          src: url('fonts/Androgyne-Regular.woff2') format('woff2'),
              url('fonts/Androgyne-Regular.woff') format('woff'),
              url('fonts/Androgyne-Regular.ttf') format('truetype');
          font-weight: normal;
          font-style: normal;
          font-display: swap;
      }

      @font-face {
          font-family: 'Androgyne';
          src: url('fonts/Androgyne-Bold.woff2') format('woff2'),
              url('fonts/Androgyne-Bold.woff') format('woff'),
              url('fonts/Androgyne-Bold.ttf') format('truetype');
          font-weight: bold;
          font-style: normal;
          font-display: swap;
      }

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

      html {
        overflow-x: hidden;
      }

      body {
        font-family: "Poppins", sans-serif;
        color: var(--dark);
        line-height: 1.6;
        overflow-x: hidden;
      }

      h1, h2, h3, h4, h5 {
        font-family: "Raleway", sans-serif;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1rem;
      }

      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 2rem;
      }

      h3 {
        font-size: 1.5rem;
      }

      p {
        margin-bottom: 1rem;
      }

      a {
        text-decoration: none;
        color: var(--primary);
        transition: color 0.3s;
      }

      a:hover {
        color: var(--primary-dark);
      }

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      /* Header */
      .site-header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
      }

      .logo {
        display: flex;
        align-items: center;
        font-family: 'Androgyne', Arial, sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--dark);
      }
        
      .logo-image {
        height: 50px;
        width: auto;
        margin-right: 0.5rem;
      }

      .logo span {
        color: var(--primary);
      }

      nav ul {
        display: flex;
        list-style: none;
      }

      nav li {
        margin-left: 1.5rem;
      }

      nav a {
        color: var(--dark);
        font-weight: 500;
      }

      nav a:hover,
      nav a.active {
        color: var(--primary);
      }

      .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--primary-dark) 100%
        );
        color: white;
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: 100% 100%;
      }

      .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }

      .hero-text {
        position: relative;
        z-index: 1;
      }

      .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
      }

      .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
      }

      .hero-image {
        position: relative;
        z-index: 1;
      }

      .hero-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* Banner Style Hero */
      .hero-banner {
          background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
          color: white;
          padding: 3rem 0;
          position: relative;
          text-align: center;
      }

      .hero-banner::before {
          content: "";
          position: absolute;
          top: 0;
          right: 0;
          bottom: 0;
          left: 0;
          background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
          background-size: 100% 100%;
      }

      .breadcrumb {
          position: relative;
          z-index: 1;
          margin-bottom: 2rem;
          opacity: 0.8;
          font-size: 0.9rem;
      }

      .breadcrumb a {
          color: white;
          text-decoration: none;
          opacity: 0.7;
          transition: opacity 0.3s;
      }

      .breadcrumb a:hover {
          opacity: 1;
      }

      .hero-banner-content {
          position: relative;
          z-index: 1;
      }

      .hero-banner h1 {
          font-size: 3.5rem;
          margin-bottom: 1rem;
          font-family: "Raleway", sans-serif;
          font-weight: 700;
      }

      .hero-banner p {
          font-size: 1.3rem;
          opacity: 0.9;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.5;
      }

      /* Buttons */
      .btn {
        display: inline-block;
        padding: 0.8rem 1.8rem;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
      }

      .btn-primary {
        background-color: var(--secondary);
        color: white;
      }

      .btn-primary:hover {
        background-color: #4a0206;
        color: white;
      }

      .btn-outline {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        margin-left: 1rem;
      }

      .btn-outline:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
      }

      /* Features Section */
      .features {
        padding: 5rem 0;
        background-color: var(--light);
      }

      .section-header {
        text-align: center;
        margin-bottom: 3rem;
      }

      .section-header h2 {
        color: var(--primary);
        display: inline-block;
        padding-bottom: 0.5rem;
        border-bottom: 3px solid var(--secondary);
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
      }

      .feature-card {
        background-color: white;
        border-radius: 8px;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .feature-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
      }

      /* Services Section */
      .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            font-style: italic;
            margin-bottom: 1rem;
        }

      .package-section {
            margin-bottom: 4rem;
        }
        
        .package-type-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .package-type-header h3 {
            color: #2563eb;
            margin-bottom: 0.5rem;
        }
        
        .package-type-subtitle {
            font-size: 1rem;
            color: #666;
            font-style: italic;
        }

      .services {
        padding: 5rem 0;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
      }

      .service-card {
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
      }

      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .service-image {
        height: 200px;
        background-color: var(--light-gray);
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .service-image i {
        font-size: 4rem;
        color: var(--primary);
      }

      .service-content {
        padding: 1.5rem;
      }

      .service-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
      }

      .service-features {
        list-style: none;
        margin-bottom: 1.5rem;
      }

      .service-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
      }

      .service-features li:last-child {
        border-bottom: none;
      }

      .service-features i {
        color: var(--secondary);
        margin-right: 0.5rem;
      }

      /* Additional Services Block Styling */
      .additional-services {
        max-width: 800px;
        margin: 40px auto;
        padding: 30px;
        text-align: center;
        background-color: #f8f9fa;
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      }
      
      .additional-services-heading {
        font-size: 20px;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 20px;
      }
      
      .additional-services-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 500px;
        text-align: left;
        display: inline-block;
      }
      
      .additional-services-list li {
        padding: 8px 0 8px 25px;
        position: relative;
        color: #555;
      }
      
      .additional-services-list li:before {
        content: "•";
        color: #4a6fa5;
        position: absolute;
        left: 0;
        font-weight: bold;
        font-size: 18px;
      }
      
      .price-tag {
        color: #4a6fa5;
        font-weight: 600;
      }
      
      .view-all-link {
        display: block;
        margin-top: 20px;
        color: #4a6fa5;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s;
      }
      
      .view-all-link:hover {
        color: #3a5a8a;
        text-decoration: underline;
      }

      /* Process Section */
      .process {
        padding: 5rem 0;
      }

      .process-steps {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
      }

      .process-step {
        text-align: center;
        position: relative;
      }

      .step-number {
        width: 60px;
        height: 60px;
        background-color: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
      }

      .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 30px;
        right: -50%;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        z-index: -1;
      }

      /* Blog Section */
      .blog-section {
        padding: 5rem 0;
        background-color: var(--light);
      }

      .post-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }

      .post-card {
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s;
      }
        
      .post-card:hover {
        transform: translateY(-5px);
      }
        
      .post-thumbnail {
        height: 200px;
        width: 100%;
        background-color: #eaeaea;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
      }
        
      .post-content {
        padding: 20px;
      }
        
      .post-meta {
        display: flex;
        gap: 15px;
        font-size: 14px;
        color: #777;
        margin-bottom: 10px;
      }
        
      .post-title {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
      }
        
      .post-excerpt {
        color: #666;
        margin-bottom: 15px;
      }
        
      .read-more {
        font-weight: 500;
        display: inline-block;
      }
        
      /* CTA Section */
      .cta {
        padding: 5rem 0;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--primary-dark) 100%
        );
        color: white;
        text-align: center;
      }

      .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
      }

      .cta p {
        max-width: 600px;
        margin: 0 auto 2rem;
        font-size: 1.1rem;
        opacity: 0.9;
      }

      /* About Page */
        .about {
            padding: 5rem 0;
            background-color: var(--light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            color: var(--primary);
            display: inline-block;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--secondary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .about-text {
            font-size: 1.1rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
        }

        .highlight-box h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Values Section */
        .values {
            padding: 4rem 0;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background-color: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 4px solid var(--primary);
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .value-card h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .value-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        /* Difference Section */
        .difference {
            padding: 4rem 0;
            background-color: var(--light);
        }

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

        .difference-card {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .difference-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .difference-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .difference-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
        }

        /* Founder Section */
        .founder {
            padding: 4rem 0;
        }

        .founder-content {
            display: grid;
            grid-template-columns: minmax(auto, 300px) 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .founder-image {
            width: 300px;
            height: 300px;
            border-radius: 20px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .founder-image i {
            font-size: 5rem;
            color: white;
        }

        .founder-info h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .founder-title {
            color: var(--gray);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        
        
        
        
        

        
        /* Contact Page */
      .contact {
        padding: 5rem 0;
        background-color: var(--light);
      }

      .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
        gap: 2rem;
      }

      .contact-form {
        background-color: var(--light);
        padding: 2rem;
        border-radius: 8px;
        margin-bottom: 3rem;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05)
      }

      .contact-info {
        display: grid;
        gap: 1.5rem;
        margin-top: 2rem;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }

      .contact-item {
        display: flex;
        align-items: center;
        background-color: white;
      }

      .contact-icon {
        width: 50px;
        height: 50px;
        background-color: var(--light-gray);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-right: 1rem;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-group label {
        display: block;   
        margin-bottom: 0.5rem;
        font-weight: 500;
      }

      .form-control {
        width: 100%;
        padding: 0.8rem;
        border: 1px solid #e2e8f0;
        border-radius: 5px;
        font-family: inherit;
        font-size: 1rem;
        color: var(--dark);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      } 

      /* FAQ Page */
      .faq {
        padding: 5rem 0;
        background-color: var(--light);
      }
  
      .faq-item {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        margin-bottom: 1rem;
        overflow: hidden;
      }

      .faq-question {
        padding: 1.5rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .faq-question i {
        transition: transform 0.3s;
      }

      .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
      }

      .faq-answer-content {
        padding-bottom: 1.5rem;
      }

      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }

      .faq-item.active .faq-answer {
        max-height: 500px;
      }

      /* Footer */
      footer {
        background-color: var(--dark);
        color: white;
        padding: 3rem 0 1.5rem;
      }
      
      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
      }
      
      .footer-logo {
        font-size: 1.5rem;
        font-weight: 700;
        font-family: 'Androgyne', Arial, sans-serif;
        margin-bottom: 1rem;
      }
      
      .footer-logo span {
        color: var(--primary);
      }
      
      .footer-links h3 {
        margin-bottom: 1.2rem;
        color: var(--light);
        font-size: 1.2rem;
      }
      
      .footer-links ul {
        list-style: none;
      }
      
      .footer-links li {
        margin-bottom: 0.8rem;
      }
      
      .footer-links a {
        color: #cbd5e1;
        transition: color 0.3s;
      }
      
      .footer-links a:hover {
        color: white;
      }
      
      .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
      }
      
      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        transition: background-color 0.3s;
      }
      
      .social-links a:hover {
        background-color: var(--primary);
        color: white;
      }
      
      /* Newsletter Styles */
      .footer-newsletter h3 {
        margin-bottom: 1.2rem;
        color: var(--light);
        font-size: 1.2rem;
      }
      
      .footer-newsletter p {
        color: #cbd5e1;
        margin-bottom: 1rem;
        font-size: 0.95rem;
      }
      
      .newsletter-input-wrapper {
        display: flex;
        margin-bottom: 0.8rem;
      }
      
      .newsletter-input-wrapper input {
        flex: 1;
        padding: 0.75rem 1rem;
        border: none;
        border-radius: 4px 0 0 4px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 0.9rem;
      }
      
      .newsletter-input-wrapper input::placeholder {
        color: #94a3b8;
      }
      
      .newsletter-input-wrapper input:focus {
        outline: none;
        background-color: rgba(255, 255, 255, 0.15);
      }
      
      .newsletter-input-wrapper button {
        padding: 0.75rem 1.2rem;
        background-color: var(--primary);
        color: white;
        border: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        font-weight: 600;
        transition: background-color 0.3s;
      }
      
      .newsletter-input-wrapper button:hover {
        background-color: var(--primary-dark, #0369a1);
      }
      
      .newsletter-consent {
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        margin-top: 0.8rem;
      }
      
      .newsletter-consent input {
        margin-top: 0.2rem;
      }
      
      .newsletter-consent label {
        font-size: 0.85rem;
        color: #94a3b8;
        line-height: 1.4;
      }
      
      .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #94a3b8;
        font-size: 0.9rem;
      }

      /* Back to Top Button */
      #back-to-top-btn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        background-color: #555;
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 50%;
        font-size: 18px;
        transition: background-color 0.3s;
      }
      
      #back-to-top-btn:hover {
        background-color: #333;
      }



/* Add this to your style.css file */
.product-description {
  font-size: 0.95rem;
  color: var(--gray);
}





      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero-content, .about-content, .founder-content,
        .contact-grid {
          grid-template-columns: 1fr;
        }

        .hero-image {
          order: -1;
          margin-bottom: 2rem;
        }

        .founder-image { margin: 0 auto; }

        .process-step:not(:last-child)::after {
          display: none;
        }

        .main-content {
              flex-direction: column;
          }
          
          .sidebar {
              width: 100%;
          }
      }

      @media (max-width: 768px) {
        h1 {
          font-size: 2rem;
        }

        h2 {
          font-size: 1.8rem;
        }

        .mobile-menu {
          display: block;
        }

        nav {
          position: fixed;
          top: 70px;
          right: -100%;
          width: 80%;
          max-width: 300px;
          height: calc(100vh - 70px);
          background-color: white;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
          padding: 2rem;
          transition: right 0.3s;
          z-index: 90;
        }

        nav.active {
          right: 0;
        }

        nav ul {
          flex-direction: column;
        }

        nav li {
          margin: 0 0 1.2rem 0;
        }

        .logo {
          font-size: 1.5rem;
        }
            
        .logo-image {
          height: 35px;
        }

        .hero-banner {
            padding: 2.5rem 0;
        }
        
        .hero-banner h1 {
            font-size: 2.5rem;
        }
        
        .hero-banner p {
            font-size: 1.1rem;
        }

        .contact-grid {
          width: 95%;
          margin: 0 auto;
        }

        .hero-content {
          grid-template-columns: 1fr;
        }

        .hero-text .btn-outline {
          display: block;
          margin-left: 0;
          margin-top: 1rem;
        }

        .post-list {
              grid-template-columns: 1fr;
          }
          
          .site-header {
              flex-direction: column;
              gap: 15px;
          }

          .founder-image {
                width: 250px;
                height: 250px;
            }

            .founder-image i { font-size: 4rem; }

            .single-post-title {
                font-size: 28px;
            }
            
            .single-post-thumbnail {
                height: 300px;
            }
      }

      /* Responsive adjustments */
      @media (max-width: 600px) {
        .additional-services {
            padding: 20px 15px;
        }

        .hero-banner h1 {
            font-size: 1.8rem;
        }

        .hero-banner p {
            font-size: 1rem;
        }

        .cta h2 {
            font-size: 1.6rem;
        }

        .about-content {
            grid-template-columns: 1fr;
        }

        .founder-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .founder-image {
            width: 200px !important;
            height: 200px !important;
            margin: 0 auto;
        }

        .contact-info {
            grid-template-columns: 1fr;
        }

        .contact-item {
            flex-direction: column;
            text-align: center;
            padding: 1rem;
            gap: 0.75rem;
        }

        .contact-icon {
            margin-right: 0;
        }

        .values-grid,
        .difference-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .btn-outline {
            margin-left: 0;
            margin-top: 0.75rem;
        }
      }



      /* Dark Mode */
      @media (prefers-color-scheme: dark) {
        body {
          background-color: #1e293b;
          color: #f8fafc;
        }

        header {
          background-color: #2a3748;
        }

        .hero {
          background: linear-gradient(
            135deg,
            #1d4ed8 0%,
            #1e293b 100%
          );
        }

        .features,
        .services,
        .portfolio,
        .testimonials,
        .cta,
        .contact,
        .faq {
          background-color: #2a3748;
        }

        footer {
          background-color: #2a3748;
          color: #f8fafc;
        }
      }