/* Base Styles */
:root {
    --primary-color: #16be45; /* Blue color as requested */
    --primary-dark: #128d6e;
    --primary-light: #e6f0fa;
    --secondary-color: #2a2a2a;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f5f7fa;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --radius: 0.375rem;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  /* Buttons */
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
  }
  
  .button:hover {
    background-color: var(--primary-dark);
  }
  
  .button i {
    margin-left: 0.5rem;
  }
  
  .button-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .button-outline:hover {
    background-color: var(--primary-light);
  }
  
  .button-full {
    width: 100%;
  }
  
  /* Header/Navigation */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px var(--shadow-color);
  }
  
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
  }
  
  .logo {
    flex: 1;
    text-align: center;
  }
  
  .logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap; /* Prevent text from breaking into multiple lines */
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-nav ul {
    display: flex;
    gap: 2rem;
  }
  
  .desktop-nav a {
    font-weight: 500;
  }
  
  .desktop-nav a:hover {
    color: var(--primary-color);
  }
  
  .mobile-nav-trigger {
    display: flex;
  }
  
  .mobile-nav-trigger button {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-color);
    cursor: pointer;
  }
  
  .cta-button .desktop-button {
    display: none;
  }
  
  .cta-button .mobile-button {
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--background-color);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 2px 0 8px var(--shadow-color);
    overflow-y: auto;
  }
  
  .mobile-nav.active {
    left: 0;
  }
  
  .mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-nav-header button {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--text-color);
    cursor: pointer;
  }
  
  .mobile-nav ul {
    padding: 1rem;
  }
  
  .mobile-nav li {
    margin-bottom: 1rem;
  }
  
  .mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .mobile-nav-link:hover {
    color: var(--primary-color);
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  
  .overlay.active {
    display: block;
  }
  
  /* Hero Section */
  .hero {
    background-color: var(--background-light);
    padding: 4rem 0;
  }
  
  .hero-content {
    display: grid;
    gap: 2rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-image {
    order: -1;
  }
  
  /* Steps Section */
  .steps {
    background-color: var(--background-color);
  }
  
  .steps-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .step-card {
    background-color: var(--background-light);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px var(--shadow-color);
    transition: var(--transition);
  }
  
  .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow-color);
  }
  
  .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
  }
  
  .step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .step-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .step-card p {
    color: var(--text-light);
  }
  
  .steps-cta {
    text-align: center;
  }
  
  /* Services Section */
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .section-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
  }
  
  .services-grid {
    display: grid;
    gap: 2rem;
  }
  
  .service-card {
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1.5rem;
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow-color);
  }
  
  .service-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.25rem;
  }
  
  .service-title h3 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
  }
  
  .service-title p {
    font-size: 0.875rem;
    color: var(--text-light);
  }
  
  .service-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
  }
  
  /* Why Choose Me Section */
  .why-choose {
    background-color: var(--background-light);
  }
  
  .why-choose-content {
    display: grid;
    gap: 2rem;
  }
  
  .why-choose-reasons {
    display: grid;
    gap: 1.5rem;
  }
  
  .reason-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
  }
  
  .reason-text h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
  }
  
  .reason-text p {
    color: var(--text-light);
  }
  
  /* About Section */
  .about {
    background-color: var(--background-color);
  }
  
  .about-content {
    display: grid;
    gap: 2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
  }
  
  .credentials-list {
    display: grid;
    gap: 0.75rem;
  }
  
  .credentials-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .credentials-list i {
    color: var(--primary-color);
  }
  
  /* My Philosophies Section */
  .philosophies {
    background-color: var(--background-light);
  }
  
  .philosophies-grid {
    display: grid;
    gap: 2rem;
  }
  
  .philosophy-card {
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1.5rem;
    transition: var(--transition);
  }
  
  .philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow-color);
  }
  
  .philosophy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
  }
  
  .philosophy-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-align: center;
  }
  
  .philosophy-card p {
    color: var(--text-light);
    text-align: center;
  }
  
  /* Testimonials Section */
  .testimonials-grid {
    display: grid;
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1.5rem;
  }
  
  .testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .testimonial-text {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-style: italic;
  }
  
  .author-name {
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .author-title {
    font-size: 0.875rem;
    color: var(--text-light);
  }
  
  /* Contact Section */
  .contact {
    background-color: var(--background-light);
  }
  
  .contact-content {
    display: grid;
    gap: 2rem;
  }
  
  .contact-info {
    display: grid;
    gap: 1.5rem;
  }
  
  .contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1.5rem;
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.25rem;
  }
  
  .contact-details h3 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
  }
  
  .contact-details p {
    color: var(--text-light);
  }
  
  .contact-form {
    background-color: var(--background-color);
    border-radius: var(--radius);
    box-shadow: 0 4px 6px var(--shadow-color);
    padding: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background-color: var(--background-color);
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-light);
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  /* Footer */
  .footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-column h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  .footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
  }
  
  .footer-column p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
  }
  
  .footer-column ul {
    display: grid;
    gap: 0.75rem;
  }
  
  .footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-column ul a:hover {
    color: white;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
  }
  
  .footer-bottom p:first-child {
    margin-bottom: 0.5rem;
  }
  
  /* Media Queries */
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .philosophies-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    section {
      padding: 6rem 0;
    }
    
    .hero-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .hero-image {
      order: 1;
    }
    
    .hero-text h1 {
      font-size: 3rem;
    }
    
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .about-content {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
    
    .contact-content {
      grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .desktop-nav {
      display: block;
    }
    
    .mobile-nav-trigger {
      display: none;
    }
    
    .logo {
      flex: 0 0 auto; /* Don't shrink, don't grow, use auto width */
      text-align: left;
      margin-right: 2rem; /* Add some space between logo and nav */
    }
    
    .cta-button .desktop-button {
      display: inline-flex;
    }
    
    .cta-button .mobile-button {
      display: none;
    }
    
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
    
    .philosophies-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
      grid-template-columns: repeat(4, 1fr);
    }
  }