 /* =============================================
   GLOBAL STYLES & RESETS
   ============================================= */
:root {
    --primary-color: #003366;
    --secondary-color: #002244;
    --accent-color: #007BFF;
    --text-color: #333;
    --text-color2: #f6f1eb;
    --light-text: #fff;
    --background-light: #f6f1eb;
    --border-color: #ddd;
    --font-heading: 'Yeseva One', serif;
    --font-body: 'EB Garamond', serif;
    scroll-behavior: smooth;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  p, li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* =============================================
     LAYOUT & STRUCTURE
     ============================================= */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* .page-container {
    display: flex;
    min-height: calc(100vh - 180px);
  }
  
  .main-content {
    flex: 1;
    padding: 40px 20px;
  }
  */

  .page-container {
    display: flex;
    min-height: 100vh;
  }
  
  .main-content {
    flex: 1;
    padding: 40px;
    max-width: calc(100% - 250px); 
  }
  /* =============================================
     HEADER & NAVIGATION
     ============================================= */
  .top-bar {
    background-color: white;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .contact-number {
    font-family: var(--font-body);
    font-size: 16px;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #000;
    position: relative;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.logo img {
  max-height: 80px;
}
  .logo h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin: 0;
  }
  
  .logo .subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid #000;
    margin-top: 5px;
    padding-top: 5px;
  }
 
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-left: 50px; 
  }
  
  nav ul li a {
    color: #000;
    padding: 5px 0;
    position: relative;
  }
  
  nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  nav ul li a:hover:after {
    width: 100%;
  }

  .main-nav {
    display: flex;
    gap: 20px;
    margin-left: 20px; 
}
  /* Dropdown Styles */
  .dropdown {
    position: relative;
  }
  
  .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #ece6de;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li {
    padding: 0;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #000;
  }
  
  .dropdown-menu li a:hover {
    background-color: #d3c7b7;
  }
  
  /* =============================================
     SIDEBAR NAVIGATION
     ============================================= */  /* */
  /*
     #sidenav {
    width: 250px;
    background-color: #00225A;
    color: #fff;
    padding: 20px;
  }
  
  #sidenav h3 {
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  #sidenav ul {
    list-style: none;
  }
  
  #sidenav ul li {
    margin-bottom: 10px;
  }
  
  #sidenav ul li a {
    color: #fff;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .practice-area-header {
    display: block;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    color: white;
    padding: 8px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }

  #sidenav ul li a:hover {
    background-color: var(--accent-color);
    padding-left: 15px;
  }
  /* Responsive adjustments *//*
@media (max-width: 768px) {
    .sidenav {
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #e0e0e0;
    }
  }
  */

/* Side Navigation Container */
/*.sidenav-container {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    z-index: 100;
    background-color: #003366; 
    padding: 20px 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  */
  .sidenav-container {
    width: 250px;
    min-height: 100vh;
    background-color: #003366;
    padding: 20px 0;
    position: relative; /* Changed from fixed */
    order: 2; /* Puts it on the right side */
  }
  
  .sidenav {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0 15px;
  }
  
  .sidenav h3 {
    font-family: 'Yeseva One', serif;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  /* Practice Areas List */
  .practice-areas {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .practice-areas > li {
    margin-bottom: 15px;
  }
  
  /* Headers with underline */
  .practice-area-header {
    display: block;
    font-family: 'EB Garamond', serif;
    font-weight: 600;
    color: white;
    padding: 8px 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
  }
  
  .practice-area-header:hover {
    text-decoration-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 10px;
  }
  
  /* Sub-items */
  .practice-areas ul {
    list-style: none;
    padding-left: 15px;
    margin-top: 8px;
  }
  
  .practice-areas ul li a {
    display: block;
    font-family: 'EB Garamond', serif;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }
  
  /* Original hover animation */
  .practice-areas ul li a:hover {
    color: white;
    padding-left: 10px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .sidenav-container {
      position: relative;
      width: 100%;
      height: auto;
    }
    
    .sidenav {
      padding: 20px;
    }
  }



  /* =============================================
     HERO SECTIONS
     ============================================= */
  .angled-header {
    background: 
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url('/assets/img/slide1.webp') no-repeat center center/cover;
    position: relative;
    padding: 150px 20px;
    padding-bottom: 80px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    clip-path: polygon(50% 100%, 0 80%, 0 0, 100% 0, 100% 80%);
  }
  
  .angled-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .angled-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
  }
  
  .angled-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
  }
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
  }
  
  .hero-section .content {
    max-width: 800px;
    width: 100%;
  }
  
  .cta-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-heading);
    display: inline-block;
  }
  
  .cta-button:hover {
    background: white;
    color: var(--primary-color);
  }
  
  /* =============================================
     CONTENT SECTIONS
     ============================================= */

/* Goals Section Styling */
.goals-section {
    position: relative;
    margin-top: -60px; 
    padding: 80px 0 60px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.05); /* Soft transition shadow */
    z-index: 2; 
  }
  
  .goals-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
  }
  
  .goals-section h2 {
    font-family: 'Yeseva One', serif;
    font-size: 2rem;
    color: #003366;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background-color: #f5f5f5; /* Light grey background */
    box-shadow: 0 0 0 10px #f5f5f5; /* Extends background visually */
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 100%, 20px 100%);
    z-index: 1;
  }
  
  .goals-section h2:after {
    content: '';
    position: absolute;
    width: 100px; /* Length of the bar */
    height: 4px; /* Thickness of the bar */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #003366 0%, #003366 50%, #d4af37 50%, #d4af37 100%);
  }

  .goals-section h2:before {
    content: '';
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 10px);
    top: -5px;
    left: -20px;
    background-color: #f5f5f5;
    clip-path: polygon(0% 0%, 100% 0%, calc(100% - 20px) 100%, 20px 100%);
    z-index: -1;
  }
  
  .goals-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  
  .goals-section h3 {
    font-family: 'Yeseva One', serif;
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .goals-section p {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }
  
  .goals-section ul {
    margin: 30px 0;
    padding-left: 20px;
  }
  
  .goals-section li {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
  }
  
  .goals-section li:before {
    content: "•";
    color: #003366;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
  }
  
  @media (max-width: 768px) {
    .goals-section {
      padding: 60px 0;
    }
    
    .goals-section h2 {
      font-size: 1.8rem;
    }
    
    .goals-section h3 {
      font-size: 1.5rem;
    }
    
    .goals-content {
      padding: 0 15px;
    }
  }
  .statement-section {
    background-color: var(--background-light);
    padding: 50px 0;
  }
  
  .statement-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .statement-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .statement-text {
    flex: 1;
    min-width: 300px;
  }
  
  .statement-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .statement-text blockquote {
    margin: 0;
    padding-left: 20px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
  }
  
  .statement-text hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid var(--border-color);
    width: 60px;
  }
  
  .statement-footer {
    background-color: var(--primary-color);
    padding: 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
     font-size: 1.5rem; 
  font-family: 'Yeseva One', serif; 
 
  }
  
  .statement-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  

  /* Attorney Profile */
  .attorney-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
    gap: 40px;
    margin-top: 40px;
  }
  .attorney-title {
    font-family: 'EB Garamond', serif;
    font-weight: 700;
    color: white;
    text-align: center;
}
.attorney-name {
  font-family: 'Yeseva One', serif;
  color: #d4a76a;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
  .attorney-image-container {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 4px solid var(--primary-color);
  }
  
  .attorney-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .attorney-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.8);
    color: white;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .attorney-image-container:hover .attorney-overlay {
    transform: translateY(0);
  }
  
  .attorney-image-container:hover .attorney-image {
    transform: scale(1.05);
  }
  
  .learn-more-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
  }
  
  .learn-more-btn:hover {
    background: transparent;
    color: var(--primary-color);
  }
  .attorney-profile {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 20px; 
}

.attorney-photo {
    width: 350px;  
    height: 450px; 
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex-shrink: 0; 
}

.attorney-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Optional hover effect */
.attorney-photo:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .attorney-profile {
        flex-direction: column; 
    }

    .attorney-photo {
        width: 280px;
        height: 380px;
    }
}
  /* BUSINESS ENTITIES PAGE STYLES */
/* ============================ */

/* Main Content Container */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.6;
  color: #333;
}

/* Page Header */
.main-content h1 {
  font-family: 'Yeseva One', serif;
  color: #1a3e6f;
  margin-bottom: 2rem;
  border-bottom: 2px solid #d4a76a;
  padding-bottom: 0.5rem;
}

/* Section Headings */
.entity-section h2 {
  font-family: 'Yeseva One', serif;
  color: #1a3e6f;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e1e1e1;
}

/* Subsection Headings */
.entity-section h3 {
  font-family: 'EB Garamond', serif;
  color: #2c4b7a;
  margin: 1.5rem 0 0.75rem;
  font-weight: 700;
}

/* Business Entities List */
.business-entities-list {
  background: #f8f8f8;
  padding: 1.5rem;
  border-left: 4px solid #d4a76a;
  margin-bottom: 2rem;
}

.business-entities-list ul {
  columns: 2;
  list-style-type: none;
  padding: 0;
}

.business-entities-list li {
  margin-bottom: 0.5rem;
}

.business-entities-list a {
  color: #1a3e6f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.business-entities-list a:hover {
  color: #d4a76a;
  text-decoration: underline;
}

/* Content Styling */
.entity-section p {
  margin-bottom: 1rem;
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
}

.disclaimer {
  font-style: italic;
  background: #fff8e6;
  padding: 1rem;
  border-left: 3px solid #d4a76a;
}

/* Links */
a {
  color: #1a3e6f;
  text-decoration: underline;
}

a:hover {
  color: #d4a76a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .business-entities-list ul {
      columns: 1;
  }
  
  .main-content {
      padding: 1rem;
  }
}

/* Print Styles */
@media print {
  .business-entities-list {
      page-break-after: avoid;
  }
  
  .entity-section {
      page-break-inside: avoid;
  }
  
  a::after {
      content: " (" attr(href) ")";
      font-size: 0.8em;
      font-weight: normal;
  }
}
  /* =============================================
     CONTACT FORM
     ============================================= */
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-section label {
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
  }
  
  .contact-section input,
  .contact-section textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
  }
  
  .contact-section textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  .contact-section button[type="submit"] {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    transition: background 0.3s ease;
  }
  
  .contact-section button[type="submit"]:hover {
    background: var(--secondary-color);
  }
  
  .disclaimer {
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
  }
  .disclaimer input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);  
}

.disclaimer label {
    margin: 0;  
    font-size: 14px;  
    color: white;  
}
  .form-message {
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
    font-family: var(--font-body);
    text-align: center;
  }
  
  /* Success message style */
  .form-message.success {
    background-color: #e6f7e6;
    border: 1px solid #a3d8a3;
    color: #2d672d;
  }
  
  /* Error message style */
  .form-message.error {
    background-color: #fde8e8;
    border: 1px solid #f5c6cb;
    color: #721c24;
  }
  
  /* =============================================
     CALL TO ACTION
     ============================================= */
  .call-to-action {
    position: relative;
    padding: 80px 0;
    color: white;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/assets/img/cta-bg.jpg') center/cover no-repeat;
  }
  
  .call-to-action h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  
  .call-to-action p {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }
  
  .cta-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .cta-btn:hover {
    background: white;
    color: var(--primary-color);
  }
  
  /* =============================================
     FOOTER
     ============================================= */
     #footer {
        background-color: #222;
        color: white;
        padding: 40px 20px 20px;
        padding-top: 0;
        text-align: center;
        font-family: 'EB Garamond', serif;
      }

      .footer-main-content {
        padding: 40px 0 20px; 
      }
      
      .footer-content {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      
      .footer-column {
        flex: 1;
        min-width: 250px;
        text-align: left;
      }
      
      .footer-column h3 {
        font-family: 'Yeseva One', serif;
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: white;
      }
      
      .footer-column p, .footer-column a {
        color: #ccc;
        line-height: 1.6;
      }
      
      .footer-column a:hover {
        color: white;
      }
      
      .footer-quote {
        font-style: italic;
        margin: 30px auto;
        max-width: 800px;
        padding: 0 20px;
      }
      
      .footer-logo {
        font-family: 'Yeseva One', serif;
        font-size: 1.8rem;
        margin-bottom: 10px;
      }
      
      .footer-subtitle {
        font-family: 'EB Garamond', serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-bottom: 30px;
      }
      
      .copyright {
        margin-top: 30px;
        color: #999;
        font-size: 0.9rem;
      }
      
      .footer-links {
        margin-top: 20px;
      }
      
      .footer-links a {
        color: #ccc;
        margin: 0 10px;
        text-decoration: none;
      }
      
      .footer-links a:hover {
        text-decoration: underline;
      }
  
  .copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
  }
  .back-home {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    align-items: center;
  }
  
  .back-home:hover {
    background: transparent;
    color: var(--primary-color);
  }
  /* =============================================
     UTILITY CLASSES
     ============================================= */
  .white-text {
    color: white !important;
  }
  
  .text-center {
    
    text-align: center;
    color: white;
  }
  
  .mt-20 {
    margin-top: 20px;
  }
  
  .mb-20 {
    margin-bottom: 20px;
  }
  
  .p-40 {
    padding: 40px;
  }
  
  /* =============================================
     RESPONSIVE STYLES
     ============================================= */
     .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      z-index: 1000;
    }
    
    .hamburger {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--primary-color);
      position: relative;
    }
    
    .hamburger::before,
    .hamburger::after {
      content: '';
      position: absolute;
      width: 25px;
      height: 2px;
      background: var(--primary-color);
      transition: all 0.3s ease;
    }
    
    .hamburger::before {
      top: -8px;
    }
    
    .hamburger::after {
      bottom: -8px;
    }
    
    .main-navigation {
      transition: all 0.3s ease;
    }
    
    /* Desktop Styles */
    @media (min-width: 992px) {
      .main-nav {
        display: flex;
        gap: 20px;
      }
      
      .dropdown:hover .dropdown-menu {
        display: block;
      }
    }
    
    /* Mobile Styles */
    @media (max-width: 991px) {
      .mobile-menu-toggle {
        display: block;
      }
      
      .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto;
      }
      
      .main-navigation.active {
        right: 0;
      }
      
      .main-nav {
        flex-direction: column;
      }
      
      .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding-left: 15px;
      }
      
      .mobile-menu-toggle.active .hamburger {
        background: transparent;
      }
      
      .mobile-menu-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
      }
      
      .mobile-menu-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
      }
    }
  @media (max-width: 992px) {
    .header-content {
      flex-direction: column;
      text-align: center;
    }
    
    nav ul {
      margin-top: 20px;
      justify-content: center;
    }
    
    .statement-container {
      flex-direction: column;
    }
    
    .attorney-profile {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .page-container {
      flex-direction: column;
    }
    
    #sidenav {
      width: 100%;
      height: auto;
    }
    
    .angled-content h1 {
      font-size: 2.5rem;
    }
    
    .angled-content p {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 576px) {
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
    
    .dropdown-menu {
      position: static;
      box-shadow: none;
    }
  }