:root {
    --primary: #1a365d;
    --primary-light: #2a4a7f;
    --secondary: #b7282e;
    --light-gray: #f5f7fa;
    --medium-gray: #e2e8f0;
    --dark-gray: #4a5568;
    --text: #1a202c;
}
:root {
  --hero-gradient: linear-gradient(to bottom, rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.95));
}

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

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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


/* Header */
header {
    background-color: white;
    box-shadow: 0 1px 3px 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: 1.25rem 0;
}

.cta-container {
  text-align: center;
  margin-top: 2rem;
}

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

.cta-button {
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.primary {
  background-color: #1d3557;
  color: white;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.phone-cta {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
}

.phone-cta a {
  color: white;
  text-decoration: underline;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    margin-right: 0.75rem;
    font-size: 1.75rem;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.contact-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.contact-button:hover {
    background-color: var(--primary-light);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero section */
.hero {
  background: url('assets/hero.jpg') center center / cover no-repeat;
  color: white;
  padding: 5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh; /* Adjust height */
  text-align: center;
}

.hero-content {
  background: rgba(28, 50, 75, 0.35); /* matches that cool blue from your PDF */
  padding: 2rem;
  border-radius: 0.5rem;
  width: 100%;
  backdrop-filter: blur(1px);
}


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

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



.hero-buttons {
    display: flex;
    justify-content: center; /* This centers the buttons */
    gap: 1rem;
    flex-wrap: wrap; /* Optional: makes buttons wrap on smaller screens */
}

.hero-bullets {
  background: transparent;
  padding: 1.5rem 0;
  color: white;
}

.hero-bullets ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 0 auto;
  max-width: 800px;
}

.hero-bullets li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-bullets {
  background: none;
  padding: 1.5rem 0;
  color: white;
}

.bullet-section {
  background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.95));
  color: white;
  padding: 2rem 0;
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.case-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}
.case-card i {
  font-size: 1.8rem;
  color: #154c79;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.expanded-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.expanded-text.show {
  max-height: 1000px; /* large enough to reveal your text */
}

.hidden {
  display: none;
}

.read-more-btn {
  margin-top: 1rem;
  background: none;
  border: none;
  color: #154c79;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* About section */
.about {
    padding: 5rem 0;
    background-color: white;
}

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

.section-title h2 {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
    font-size: 1.125rem;
}

.case-section ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.case-section li {
  margin-bottom: 0.5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services section */
.services {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

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

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

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Process section */
.process {
    padding: 5rem 0;
    background-color: white;
}

.process-steps {
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 2rem;
    width: calc(100% - 4rem);
    height: 2px;
    background-color: var(--medium-gray);
    z-index: 0;
}

.step-container {
    display: flex;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

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

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

/* Attorneys section */
.attorneys {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.attorney-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.attorney-image {
    height: 300px;
    background: url('https://placehold.co/400x400') center/cover;
}

.attorney-info {
    padding: 1.5rem;
}

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

.attorney-title {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: white;
}

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

.testimonial-card {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    color: var(--medium-gray);
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-company {
    color: var(--dark-gray);
    font-size: 0.875rem;
}

/* Pricing section */
.pricing {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-header {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.pricing-period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features ul li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-features .contact-button {
    display: block;
    text-align: center;
}

/* Contact section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

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

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.2);
}

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

.submit-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--primary-light);
}

/* CTA section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.95));
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links 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;
}

.credentials {
    font-style: italic;
    margin-top: 1rem;
}

/* Calendly popup */
.calendly-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.calendly-content {
    background-color: white;
    width: 90%;
    max-width: 700px;
    height: 80vh;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.close-calendly {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    z-index: 10;
}

/* Media queries */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0;
    }
    
    nav ul li a {
        display: block;
        padding: 0.75rem 1.5rem;
        border-bottom: none;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-container {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 2rem;
    }
    
    .hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}
.cta-container {
  background: transparent;
  text-align: center;
  margin-top: 2rem;
}

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

.cta-button {
  background-color: #1e3a5f;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #fff;
  color: #1e3a5f;
}

.cta-button.outline {
  background-color: transparent;
  border: 2px solid #fff;
}

.cta-phone {
  font-size: 1.1rem;
}

.cta-phone a {
  color: #fff;
  text-decoration: underline;
}

.cta-phone a:hover {
  color: #cce5ff;
}

.blog-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.blog-container h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a2b5c;
}
.blog-container p {
  margin-bottom: 1.5rem;
  color: #333;
}

.blog-list-section {
  padding: 2rem 1rem;
  background-color: #f6f8fa;
}

.blog-posts {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-post h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-post p {
  font-size: 1rem;
  color: #333;
}


.cta-container .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-container a.cta-button {
  display: inline-block;
  padding: 1rem 1.75rem;
  border: 2px solid white;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.cta-container a.cta-button:hover {
  background-color: white;
  color: #1e3a5f;
}

.cta-container .phone {
  margin-top: 1.25rem;
  font-size: 1.1rem;
}

.blog-posts a {
  color: #003366; /* or whatever navy/dark color matches your theme */
  text-decoration: none;
  font-weight: 600;
}

.blog-posts a:hover {
  text-decoration: underline;
}
.blog-post h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.blog-post p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.blog-list-section {
  padding: 2rem 0;
}
footer {
  border-top: 1px solid #ccc;
  margin-top: 2rem;
  padding-top: 2rem;
}
.cta-buttons .cta-button {
  background-color: #0a2e57; /* dark blue */
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  margin: 0.5rem;
  text-decoration: none;
}

.cta-buttons .cta-button:hover {
  background-color: #003366;
}
.blog-cta-section {
  background-color: #f8f9fb;
  padding: 3rem 1rem;
  text-align: center;
}

.blog-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-cta-section p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  color: #333;
}

.hero-button,
.cta-buttons .cta-button {
  background-color: #0a2e57;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  display: inline-block;
  margin: 0.5rem;
  text-decoration: none;
}

.hero-button:hover,
.cta-buttons .cta-button:hover {
  background-color: #003366;
}

.blog-cta-section {
  background-color: #f8f9fb;
  padding: 3rem 1rem;
  text-align: center;
}

.blog-cta-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.blog-cta-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}



.cta-section {
  background: #2d4566;
  padding: 3rem 1rem;
  text-align: center;
  color: white;
}

.cta-section h2,
.cta-section p {
  color: white;
  margin: 0.5rem 0;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #0a2e57;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #003366;
  color: white;
}
.hero-bullets {
    background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.95)); /* match hero */
    color: white;
    padding: 2rem;
    border-radius: 0;
    margin-top: -2rem; /* pulls it up into the hero visually */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* subtle blend */
}

.hero-bullets ul {
    list-style-type: disc;
    padding-left: 2rem;
    margin: 0;
}

.hero-bullets li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.6;
}
.hero-bullets-section {
  background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.95));
  color: white;
  padding: 2rem 0;
}
.bullet-section ul {
  list-style-type: disc;
  padding-left: 2rem;
  max-width: 750px;
  margin: 2rem auto;
  text-align: left;
  line-height: 1.6;
}

.bullet-section ul li {
  margin-bottom: 1rem;
}
.hero-bullets {
  background: transparent; /* or just remove this line entirely */
  color: white;
  padding: 2rem;
  border-radius: 0;
  margin-top: 2rem; /* or 0, if you want tighter spacing */
  border-top: none; /* optional: remove that divider */
  list-style-type: disc;
  text-align: left;
}
.hero-bullets li {
  padding-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
    min-height: 50vh;
    background-position: center top;
  }

  .hero-content {
    padding: 1.5rem;
  }

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

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

.about-me-flex {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-me-image img {
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.about-me-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-me-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-image {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about-me .about-text {
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
}
.cta-section {
  padding: 3rem 1rem;
  background: #fff;
  display: flex;
  justify-content: center;
}

.cta-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.cta-below-cards {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9f9f9; /* consistent */
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  color: #0c2340; /* ✅ DARK TEXT COLOR */
}

.cta-below-cards h3 {
  color: #0c2340;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-below-cards p {
  color: #333; /* or use #0c2340 for consistency */
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0a3b70;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #062a54;
}


.why-liable-container {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.why-liable-container .section-title {
  text-align: center;
}

.why-liable-container p,
.why-liable-container ul {
  text-align: left;
  padding-left: 0;
}

.why-liable-container ul {
  list-style-position: outside;
  padding-left: 1.25rem;
}
