:root {
  --primary: #531f7a;
  --secondary: #a67bc7;
  --accent: #b08296;
  --neutral: #696064;
  --light: #dacdbd;
  --white: #ffffff;
  --primary-light: #f5f0f8;
  --heading-font: 'Comfortaa', cursive;
  --body-font: 'Open Sans', sans-serif;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--neutral);
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

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

nav {
  background-color: var(--primary-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-image {
  height: 40px;
  width: auto;
}

.logo h1 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--neutral);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a:not(.cta-button):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:not(.cta-button):hover:after,
.nav-links a.active:not(.cta-button):after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

.nav-links .cta-button {
  margin-left: 2rem;
  color: var(--white);
  padding: 0.75rem 2rem;
}

.cta-button {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-transform: none;
}

.cta-button:hover {
  background-color: var(--secondary);
}

.service-card {
  border: 1px solid var(--light);
  border-radius: 8px;
  padding: 2rem;
  margin: 1rem 0;
}

.service-card h3 {
  color: var(--primary);
}

.service-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.learn-more {
  color: var(--secondary);
  text-decoration: none;
}

/* Footer Styles */
footer {
    background-color: var(--primary);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.contact-info p {
    margin: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 1rem;
    align-items: start;
}

.contact-label {
    font-weight: 600;
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

.contact-value {
    color: var(--white);
    margin: 0;
    font-size: 1rem;
}

/* SimplePractice Widget Styling */
.appointment-widget {
    text-align: center;
    margin: 2rem 0;
}

.language-support {
    color: var(--white);
}

.language-support h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.language-support p {
    margin: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    color: var(--white);
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        var(--primary-light) 85%,
        var(--light) 100%
    );
    border-radius: 0 0 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle branch-like shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 500px;
    background: linear-gradient(
        45deg,
        transparent 20%,
        rgba(166, 123, 199, 0.25) 70%,
        rgba(176, 130, 150, 0.2) 100%
    );
    border-radius: 100% 0 100% 0;
    transform: rotate(-15deg);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-text h2 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    color: var(--neutral);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.telehealth-note {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.5rem !important;
}

.telehealth-disclaimer {
    color: var(--neutral);
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9rem;
}

.hero-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
}

.hero-form h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-form > .form-container > p {
    color: var(--neutral);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-field label {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.75rem;
    border: 2px solid var(--light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: center;
}

.form-submit:hover {
    background: var(--secondary);
}

.form-note {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-note small {
    color: var(--neutral);
    font-size: 0.8rem;
    opacity: 0.8;
}

.emergency-note {
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.emergency-note small {
    color: var(--neutral);
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Featured Services */
.featured-services {
    padding: 4rem 0;
}

.featured-services h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 75%,
        rgba(166, 123, 199, 0.1) 100%
    );
    border-radius: 50%;
}

/* Vary the decorative element between cards */
.service-highlight:nth-child(2)::before {
    top: -40%;
    left: auto;
    right: -45%;
    width: 110%;
    height: 110%;
    background: linear-gradient(
        315deg,
        transparent 72%,
        rgba(166, 123, 199, 0.1) 100%
    );
}

.service-highlight:nth-child(3)::before {
    top: auto;
    bottom: -45%;
    left: -35%;
    width: 120%;
    height: 120%;
    background: linear-gradient(
        45deg,
        transparent 70%,
        rgba(166, 123, 199, 0.1) 100%
    );
}

/* Subtle accent line variation on the second card */
/* Remove top accent line to avoid dark band appearance */
.service-highlight:nth-child(2)::after { content: none; }

.service-highlight:hover {
    transform: translateY(-5px);
}

.service-highlight h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-highlight p {
    color: var(--neutral);
}

.therapist-summary {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: var(--primary-light);
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.therapist-summary p {
    color: var(--neutral);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.therapist-summary strong {
    color: var(--primary);
}

/* About Preview Section */
.about-preview {
    padding: 4rem 0;
    background-color: var(--primary-light);
}

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

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--neutral);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-image {
    display: flex;
    justify-content: center;
}

.portrait-image {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        var(--primary-light) 100%
    );
    border-radius: 0 0 120px 120px;
    position: relative;
    overflow: hidden;
}

/* Decorative element for About hero */
.about-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 500px;
    background: linear-gradient(
        45deg,
        transparent 20%,
        rgba(166, 123, 199, 0.25) 70%,
        rgba(176, 130, 150, 0.2) 100%
    );
    border-radius: 100% 0 100% 0;
    transform: rotate(-15deg);
    z-index: 1;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text {
    padding-right: 2rem;
}

.about-hero-text h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-hero-text p {
    color: var(--neutral);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-hero-text strong {
    color: var(--primary);
}

.about-portrait {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.about-details {
    padding: 4rem 0;
}

.credentials-section,
.approach-section,
.specialties-section {
    margin-bottom: 4rem;
}

.credentials-section h3,
.approach-section h3,
.specialties-section h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.credentials-grid,
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.credential-item,
.specialty-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.credential-item:hover,
.specialty-item:hover {
    transform: translateY(-3px);
}

.credential-item h4,
.specialty-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.credential-item p,
.specialty-item p {
    color: var(--neutral);
    margin: 0;
}

.approach-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-3px);
}

.approach-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.approach-card p {
    color: var(--neutral);
    margin: 0;
    line-height: 1.6;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.method-item {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.approach-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-box {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.highlight-box p {
    color: var(--neutral);
    margin: 0;
    font-size: 0.95rem;
}

/* Services Page Styles */
.services-hero {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        var(--primary-light) 100%
    );
    border-radius: 0 0 120px 120px;
    position: relative;
    overflow: hidden;
}

/* Decorative element for Services hero */
.services-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 500px;
    background: linear-gradient(
        45deg,
        transparent 20%,
        rgba(166, 123, 199, 0.25) 70%,
        rgba(176, 130, 150, 0.2) 100%
    );
    border-radius: 100% 0 100% 0;
    transform: rotate(-15deg);
    z-index: 1;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-hero h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.services-hero p {
    color: var(--neutral);
    font-size: 1.1rem;
    line-height: 1.7;
}

.services-overview,
.specialized-services {
    margin: 4rem 0;
}

.services-overview h3,
.specialized-services h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h4 {
    color: var(--primary);
    margin: 0;
    font-size: 1.5rem;
}

.service-badge {
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-intro {
    color: var(--neutral);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.detail-section h5 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.detail-section p {
    color: var(--neutral);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.detail-section ul {
    color: var(--neutral);
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.detail-section li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.detail-section li:last-child {
    margin-bottom: 0;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.specialized-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.specialized-card:hover {
    transform: translateY(-5px);
}

.specialized-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.specialized-intro {
    color: var(--neutral);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.specialized-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-cta {
    background: var(--primary-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem 0;
}

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

.cta-content p {
    color: var(--neutral);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: linear-gradient(
        135deg,
        var(--white) 0%,
        var(--primary-light) 100%
    );
}

.contact-section h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-section > .container > p {
    text-align: center;
    color: var(--neutral);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Center the lower Request Appointment button */
.contact-section .cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem; /* match spacing above and below */
    margin-bottom: 1.5rem; /* a touch more breathing before emergency note */
}

.contact-section .schedule-note {
    text-align: center;
    color: var(--neutral);
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

/* Override the generic direct-child paragraph spacing for the schedule note */
.contact-section > .container > p.schedule-note {
    margin-bottom: 0.35rem; /* modest gap above button */
    margin-top: 0.35rem;
}

.contact-method {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

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

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    color: var(--primary);
}

.contact-method small {
    color: var(--neutral);
    font-style: italic;
}

.contact-note {
    background: var(--primary-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
    max-width: 800px;
    margin: 0 auto;
}

.contact-note p {
    margin: 0;
    color: var(--neutral);
    font-size: 0.95rem;
}

.contact-note strong {
    color: var(--primary);
}

/* Resources Page Styles */
.resources-hero {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        var(--primary-light) 100%
    );
    border-radius: 0 0 120px 120px;
    position: relative;
    overflow: hidden;
}

/* Decorative element for Resources hero */
.resources-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 500px;
    background: linear-gradient(
        45deg,
        transparent 20%,
        rgba(166, 123, 199, 0.25) 70%,
        rgba(176, 130, 150, 0.2) 100%
    );
    border-radius: 100% 0 100% 0;
    transform: rotate(-15deg);
    z-index: 1;
}

.resources-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.resources-hero-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.resources-hero-content p {
    color: var(--neutral);
    font-size: 1.1rem;
    line-height: 1.7;
}

.crisis-section {
    margin: 3rem 0;
}

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

.crisis-header h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.crisis-subtitle {
    font-size: 1.1rem;
    color: var(--neutral);
    max-width: 600px;
    margin: 0 auto;
}

.crisis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.crisis-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crisis-card.emergency {
    border-color: #e74c3c;
}

.crisis-card.hotline {
    border-color: var(--primary);
}

.crisis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.crisis-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.crisis-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
    text-align: center;
    background: var(--primary-light);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

.crisis-card p {
    color: var(--neutral);
    margin-bottom: 1.5rem;
    text-align: center;
}

.crisis-note, .crisis-details {
    background: rgba(139, 69, 19, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.crisis-note strong, .crisis-details strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.crisis-note ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.2rem;
}

.crisis-note li {
    margin-bottom: 0.3rem;
    color: var(--neutral);
}

.crisis-details p {
    margin-bottom: 0.5rem;
    text-align: left;
}

.resource-section {
    margin: 4rem 0;
}

.resource-section h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
}

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

.resource-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.resource-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.resource-card p {
    color: var(--neutral);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.resource-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.disclaimer-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    border: 2px solid var(--secondary);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-box p {
    color: var(--neutral);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Next step cards */
.next-step { margin: 2.5rem 0 3rem; }
.next-step-title { color: var(--primary); margin-bottom: 1.5rem; font-size: 1.25rem; text-align: center; }
.choice-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.choice-card { 
    background: var(--white); 
    border-radius: 14px; 
    padding: 2rem; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.08); 
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
}
.choice-card h5 { color: var(--primary); margin: 0 0 0.75rem; font-size: 1.2rem; }
.choice-card p { color: var(--neutral); margin: 0 0 1.25rem; line-height: 1.5; }
.choice-button { 
    background: transparent; 
    color: var(--primary); 
    border: 2px solid var(--primary); 
    display: flex;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Comfortaa', sans-serif;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    height: 44px;
    box-sizing: border-box;
    line-height: 20px;
    /* Perfect centering - fixed width for consistency */
    margin: 0 auto;
    width: 180px;
    align-items: center;
    justify-content: center;
}
.choice-button:hover { 
    background: var(--primary); 
    color: var(--white); 
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(139, 69, 19, 0.2);
}

.choice-button.primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.choice-button.primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}
@media (max-width: 768px){ .choice-grid{ grid-template-columns: 1fr; gap: 1rem; } .choice-card{ padding: 1.5rem; } }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo {
        justify-content: center;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-links .cta-button {
        margin-left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-form {
        padding: 1.5rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-portrait {
        width: 250px;
        height: 300px;
    }
    
    .credentials-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .specialized-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Footer contact details - mobile cleanup */
    .contact-details {
        grid-template-columns: 1fr;
        gap: 0.25rem 0;
        justify-items: center;
        text-align: center;
    }
    .contact-label {
        display: inline-block;
        margin-top: 0.75rem;
        margin-bottom: 0.25rem;
    }
    .contact-value {
        margin-bottom: 0.5rem;
    }
    footer {
        padding: 2.25rem 0; /* slightly tighter on mobile */
    }

    /* Resources page mobile styles */
    .resources-hero-content h2 {
        font-size: 2rem;
    }

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

    .crisis-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .crisis-card {
        padding: 1.5rem;
    }

    .crisis-number {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

    .resource-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resource-card {
        padding: 1.5rem;
    }

    .disclaimer-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-text h2 {
        font-size: 1.75rem;
    }
    
    .hero-form {
        padding: 1rem;
    }
    
    .featured-services,
    .about-preview,
    .contact-section {
        padding: 2rem 0;
    }
    
    .crisis-grid {
        grid-template-columns: 1fr;
    }
} 