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

      :root {
        --burgundy: #510000;
        --black: #000000;
        --dark-gray: #404040;
        --light-gray: #f5f5f5;
        --white: #ffffff;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Georgia", serif;
        line-height: 1.6;
        color: var(--dark-gray);
        background: var(--white);
      }

      /* Typography */
      h1,
      h2,
      h3,
      h4 {
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 600;
        color: var(--black);
        line-height: 1.2;
      }

      h1 {
        font-size: 2.5rem;
      }
      h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }

      /* Header */
      header {
        background: var(--white);
        padding: 1rem 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }

      .header-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo img {
        height: 60px;
        width: auto;
      }

      .header-cta {
        display: flex;
        align-items: center;
        gap: 1.5rem;
      }

      .phone-number {
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--burgundy);
        text-decoration: none;
        white-space: nowrap;
      }

      .btn {
        display: inline-block;
        padding: 0.875rem 2rem;
        background: var(--burgundy);
        color: var(--white);
        text-decoration: none;
        font-family: "Helvetica Neue", Arial, sans-serif;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: 2px solid var(--burgundy);
        cursor: pointer;
        font-size: 1rem;
      }

      .btn:hover {
        background: var(--white);
        color: var(--burgundy);
      }

      .btn-secondary {
        background: var(--white);
        color: var(--burgundy);
        border: 2px solid var(--burgundy);
      }

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

      /* Hero Section */
      .hero {
        background: linear-gradient(
            135deg,
            rgba(81, 0, 0, 0.95),
            rgba(64, 64, 64, 0.9)
          ),
          url("attorney-consultation.jpg") center/cover;
        color: var(--white);
        padding: 5rem 2rem;
        text-align: center;
      }

      .hero-content {
        max-width: 800px;
        margin: 0 auto;
      }

      .hero h1 {
        color: var(--white);
        margin-bottom: 1.5rem;
        font-size: 2.75rem;
      }

      .hero-subtitle {
        font-size: 1.35rem;
        margin-bottom: 2rem;
        line-height: 1.5;
        font-weight: 300;
      }

      .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: wrap;
      }

      /* Trust Badge */
      .trust-strip {
        background: var(--light-gray);
        padding: 2rem;
        text-align: center;
      }

      .trust-content {
        max-width: 1200px;
        margin: 0 auto;
      }

      .badge {
        display: inline-block;
        background: var(--burgundy);
        color: var(--white);
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        font-weight: 600;
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      /* Section Styles */
      section {
        padding: 4rem 2rem;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
      }

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

      .section-intro {
        font-size: 1.15rem;
        color: var(--dark-gray);
        max-width: 800px;
        margin: 1rem auto 0;
        line-height: 1.8;
      }

      /* Why Section with Image */
      .why-section {
        background: var(--white);
      }

      .two-column {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }

      .content-block h3 {
        color: var(--burgundy);
        margin-bottom: 1rem;
      }

      .content-block p {
        margin-bottom: 1.25rem;
        font-size: 1.05rem;
        line-height: 1.8;
      }

      .image-wrapper {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      }

      .image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
      }

      /* Benefits Grid */
      .benefits-section {
        background: var(--light-gray);
      }

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

      .benefit-card {
        background: var(--white);
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-top: 4px solid var(--burgundy);
      }

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

      .benefit-card p {
        font-size: 1rem;
        line-height: 1.7;
      }

      /* Process Section */
      .process-section {
        background: var(--white);
      }

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

      .process-step {
        text-align: center;
        padding: 2rem;
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: var(--burgundy);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0 auto 1.5rem;
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      .process-step h3 {
        margin-bottom: 1rem;
      }

      /* About Section */
      .about-section {
        background: var(--light-gray);
      }

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

      .about-text h2 {
        margin-bottom: 1.5rem;
      }

      .about-text p {
        margin-bottom: 1.25rem;
        font-size: 1.05rem;
        line-height: 1.8;
      }

      .credentials {
        margin-top: 2rem;
        padding: 1.5rem;
        background: var(--white);
        border-left: 4px solid var(--burgundy);
      }

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

      .credentials li {
        padding: 0.5rem 0;
        font-size: 1rem;
      }

      .credentials li:before {
        content: "✓ ";
        color: var(--burgundy);
        font-weight: bold;
        margin-right: 0.5rem;
      }

      /* Testimonials */
      .testimonials-section {
        background: var(--white);
      }

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

      .testimonial-card {
        background: var(--light-gray);
        padding: 2rem;
        border-radius: 8px;
        position: relative;
      }

      .testimonial-card:before {
        content: '"';
        font-size: 4rem;
        color: var(--burgundy);
        position: absolute;
        top: 0.5rem;
        left: 1rem;
        opacity: 0.3;
        font-family: Georgia, serif;
      }

      .testimonial-text {
        font-style: italic;
        margin-bottom: 1.5rem;
        padding-left: 1rem;
        line-height: 1.7;
      }

      .testimonial-author {
        font-weight: 600;
        color: var(--burgundy);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(135deg, var(--burgundy), var(--dark-gray));
        color: var(--white);
        padding: 5rem 2rem;
        text-align: center;
      }

      .cta-section h2 {
        color: var(--white);
        margin-bottom: 1rem;
      }

      .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
      }

      .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      .btn-light {
        background: var(--white);
        color: var(--burgundy);
        border: 2px solid var(--white);
      }

      .btn-light:hover {
        background: transparent;
        color: var(--white);
      }

      /* Contact Form */
      .contact-section {
        background: var(--white);
      }

      .form-wrapper {
        max-width: 700px;
        margin: 3rem auto 0;
        background: var(--light-gray);
        padding: 3rem;
        border-radius: 8px;
      }

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

      .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--black);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      .form-group input,
      .form-group textarea {
        width: 100%;
        padding: 0.875rem;
        border: 2px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s ease;
      }

      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--burgundy);
      }

      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }

      .form-group.required label:after {
        content: " *";
        color: var(--burgundy);
      }

      /* Footer */
      footer {
        background: var(--black);
        color: var(--white);
        padding: 3rem 2rem 1.5rem;
      }

      .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 2rem;
      }

      .footer-section h3 {
        color: var(--white);
        margin-bottom: 1rem;
        font-size: 1.25rem;
      }

      .footer-section p,
      .footer-section a {
        color: #ccc;
        margin-bottom: 0.5rem;
        text-decoration: none;
        display: block;
        line-height: 1.8;
      }

      .footer-section a:hover {
        color: var(--white);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #333;
        color: #888;
      }

      /* Responsive */
      @media (max-width: 768px) {
        h1 {
          font-size: 2rem;
        }
        h2 {
          font-size: 1.5rem;
        }
        h3 {
          font-size: 1.25rem;
        }

        .hero {
          padding: 3rem 1.5rem;
        }

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

        .hero-subtitle {
          font-size: 1.15rem;
        }

        .header-content {
          flex-direction: column;
          gap: 1rem;
        }

        .header-cta {
          flex-direction: column;
          gap: 0.75rem;
        }

        .two-column,
        .about-content {
          grid-template-columns: 1fr;
          gap: 2rem;
        }

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

        section {
          padding: 3rem 1.5rem;
        }

        .form-wrapper {
          padding: 2rem 1.5rem;
        }

        .hero-cta {
          flex-direction: column;
        }

        .btn {
          width: 100%;
          text-align: center;
        }
      }