:root {
      --background: hsl(210, 20%, 98%);
      --foreground: hsl(220, 20%, 20%);
      --card: hsl(0, 0%, 100%);
      --card-foreground: hsl(220, 20%, 20%);
      --primary: hsl(220, 60%, 35%);
      --primary-foreground: hsl(0, 0%, 100%);
      --secondary: hsl(210, 30%, 95%);
      --muted: hsl(215, 16%, 47%);:root {
      --background: hsl(210, 20%, 98%);
      --foreground: hsl(220, 20%, 20%);
      --card: hsl(0, 0%, 100%);
      --card-foreground: hsl(220, 20%, 20%);
      --primary: hsl(220, 60%, 35%);
      --primary-foreground: hsl(0, 0%, 100%);
      --secondary: hsl(210, 30%, 95%);
      --muted: hsl(215, 16%, 47%%);
      --muted-foreground: hsl(220, 10%, 50%);
      --border: hsl(220, 15%, 88%);
      --blue-soft: hsl(210, 60%, 60%);
      --blue-mist: hsl(200, 40%, 80%);
      --navy-light: hsl(220, 40%, 50%);
      --charcoal-light: hsl(220, 15%, 40%);
    }

      --muted-foreground: hsl(220, 10%, 50%);
      --border: hsl(220, 15%, 88%);
      --blue-soft: hsl(210, 60%, 60%);
      --blue-mist: hsl(200, 40%, 80%);
      --navy-light: hsl(220, 40%, 50%);
      --charcoal-light: hsl(220, 15%, 40%);
    }
p{
    font-size: 18px !important;
}

h1 {
    font-size: 3.5rem !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    color: #2c3e50 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;

}


p {
    font-size: 18px !important;
    font-weight: 300 !important;
    color: #64748b !important;
    line-height: 1.5 !important;
    
}
   
    /* Decorative Shapes */
    .decorative-shape {
      position: absolute;
      pointer-events: none;
    }

    .flowing-circles {
      opacity: 0.5;
    }

    .geometric-dots {
      opacity: 0.4;
    }

    .organic-blob {
      opacity: 0.3;
    }

    .flowing-arc {
      opacity: 0.3;
    }

    /* Sections */
    section {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .section-bg {
      background: hsla(210, 30%, 95%, 0.3);
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 300;
      text-align: center;
      margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 1.875rem;
      }
    }

    .section-label {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: hsla(220, 60%, 35%, 0.7);
      margin-bottom: 1rem;
    }

    /* Cards Grid */
    .cards-grid {
      display: grid;
      gap: 1.5rem;
      max-width: 56rem;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .card {
      padding: 1.5rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.5rem;
      text-align:left !important;
    }

    .card p {
      color: var(--muted-foreground);
      font-weight: 300;
    }

    /* Focus Areas */
    .focus-section {
      padding: 8rem 0;
      background: linear-gradient(to bottom, transparent, hsla(210, 30%, 95%, 0.2), transparent);
    }

    .focus-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .focus-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .focus-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
      }
    }

    .focus-card {
      position: relative;
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid var(--border);
      background: hsla(0, 0%, 100%, 0.8);
      backdrop-filter: blur(4px);
      transition: all 0.5s;
    }

    .focus-card:hover {
      border-color: hsla(220, 60%, 35%, 0.4);
    }

    .focus-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 6rem;
      height: 6rem;
      background: linear-gradient(to bottom left, hsla(220, 60%, 35%, 0.05), transparent);
      border-radius: 1rem;
    }

    .focus-icon {
      width: 4rem;
      height: 4rem;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 1rem;
      background: linear-gradient(to bottom right, hsla(220, 60%, 35%, 0.1), var(--secondary));
      border: 1px solid hsla(220, 60%, 35%, 0.1);
      transition: all 0.5s;
    }

    .focus-card:hover .focus-icon {
      border-color: hsla(220, 60%, 35%, 0.3);
      background: linear-gradient(to bottom right, hsla(220, 60%, 35%, 0.2), var(--secondary));
    }

    .focus-icon svg {
      width: 1.75rem;
      height: 1.75rem;
      color: var(--primary);
    }

    .focus-card h3 {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .focus-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      font-weight: 300;
      line-height: 1.6;
    }

    /* Before/After Section */
    .before-after-grid {
      display: grid;
      gap: 3rem;
      max-width: 64rem;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .before-after-title {
      font-size: 1.125rem;
      font-weight: 300;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .before-after-title.before {
      color: var(--muted-foreground);
    }

    .before-after-title.after {
      color: var(--primary);
    }

    .before-after-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .before-after-item {
      padding: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.5rem;
    }

    .before-after-item.after {
      border-color: hsla(220, 60%, 35%, 0.2);
    }

    .before-after-item strong {
      display: block;
      font-weight: 300;
      color: var(--foreground);
      margin-bottom: 0.25rem;
    }

    .before-after-item span {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      font-weight: 300;
    }

    /* Process Steps */
    .process-grid {
      display: grid;
      gap: 2rem;
      max-width: 64rem;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .process-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .process-step {
      text-align: center;
      position: relative;
    }

    .process-step::after {
      display: none;
    }

    @media (min-width: 768px) {
      .process-step:not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        top: 1.25rem;
        left: 60%;
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, var(--border), transparent);
      }
    }

    .process-number {
      width: 2.5rem;
      height: 2.5rem;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid hsla(220, 60%, 35%, 0.3);
      color: var(--primary);
      font-weight: 300;
      background: var(--card);
    }

    .process-step h3 {
      font-size: 1.125rem;
      font-weight: 300;
      margin-bottom: 0.5rem;
    }

    .process-step p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      font-weight: 300;
    }

    /* CTA Section */
    .cta {
      text-align: -webkit-center;
    }

    .cta h2 {
      font-size: 1.5rem;
      font-weight: 300;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .cta h2 {
        font-size: 1.875rem;
      }
    }

    .cta p {
      color: var(--muted-foreground);
      font-weight: 300;
      margin-bottom: 2rem;
    }

    /* Footer */
    footer {
      padding: 3rem 0;
      border-top: 1px solid var(--border);
    }

    footer .container {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      footer .container {
        flex-direction: row;
        justify-content: space-between;
      }
    }

    footer p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
      font-weight: 300;
    }

    footer a {
      color: var(--muted-foreground);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.2s;
    }

    footer a:hover {
      color: var(--foreground);
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-up {
      animation: fadeUp 0.6s ease-out forwards;
    }

    .delay-300 {
      animation-delay: 0.3s;
    }

    /* Icon styles */
    .icon {
      width: 1rem;
      height: 1rem;
      color: #ffffff !important;
    margin: 0 auto 0 !important ;
    }

    .icon-lg {
      width: 1.25rem;
      height: 1.25rem;
    }
    
    
  .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: #4a725a;
      color: var(--primary-foreground);
      font-size: 0.875rem;
      font-weight: 300;
      border-radius: 9999px;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn-primary:hover {
      background: hsla(220, 60%, 35%, 0.9);
    }