/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
    padding-top: 80px; /* Account for fixed header */
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2c5530;
    font-weight: 600;
    font-family: 'Zeyada', cursive;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5530;
}

.nav-menu a.active {
    color: #2c5530;
    font-weight: 600;
    border-bottom: 3px solid #2c5530;
    padding-bottom: 5px;
}

.cta-button {
    background: #2c5530 !important;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #1e3a21 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    grid-column: 1 / -1;
}

.hero-content h1 {
    font-family: 'Zeyada', cursive;
    font-size: 4rem;
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-weight: 400;
    width: 100%;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-title-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Hero message section with bubble */
.hero-message-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-message-section .hero-subtitle {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c5530;
}

.hero-bubble {
    flex: 1.5;
    background: linear-gradient(135deg, #fefdfb 0%, #faf8f5 100%);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d4a574;
    overflow: hidden;
}

.hero-bubble::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(212, 165, 116, 0.3);
    font-family: Georgia, serif;
}

.hero-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bubble p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.08rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.hero-bubble-main {
    margin: 1.5rem 0 2rem 0;
    max-width: 600px;
}

.specialty-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #2c5530;
    font-weight: 500;
    margin: -0.5rem 0 2rem 0;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #2c5530;
    color: white;
    border-color: #2c5530;
}

.btn-primary:hover {
    background: #1e3a21;
    border-color: #1e3a21;
}

.btn-secondary {
    background: transparent;
    color: #2c5530;
    border-color: #2c5530;
}

.btn-secondary:hover {
    background: #2c5530;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border-color: #2c5530;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
}

/* Services Preview */
.services-preview {
    padding: 4rem 0;
    background: white;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5530;
    font-size: 2rem;
}

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

.service-card {
    background: #fffbcc;
    padding: 1.5rem;
    border-radius: 3px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.service-card:nth-child(2) {
    background: #ffefcf;
}

.service-card:nth-child(3) {
    background: #fff5d6;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card h2 {
    color: #2c5530;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
}

.service-card a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.service-card a:hover {
    text-decoration: underline;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.4;
    font-size: 0.9rem;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.2rem;
}

/* Specialties Highlight */
.specialties-highlight {
    padding: 4rem 0;
    background: #f0f8f0;
}

.specialties-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5530;
    font-size: 2rem;
}

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

.specialty-item {
    background: #fffbcc;
    padding: 1.5rem;
    border-radius: 3px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.specialty-item:nth-child(2),
.specialty-item:nth-child(5) {
    background: #ffefcf;
}

.specialty-item:nth-child(3),
.specialty-item:nth-child(6) {
    background: #fff5d6;
}

.specialty-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.specialty-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.specialty-item p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cta-section {
    text-align: center;
}

/* Approach Highlight Section */
.approach-highlight {
    padding: 4rem 0;
    background: white;
}

.approach-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5530;
    font-size: 2rem;
}

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

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
    font-style: italic;
}

.approach-methods h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

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

.approach-methods li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
    color: #666;
}

.approach-methods li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

.approach-quote {
    background: #f0f8f0;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.approach-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
    font-style: italic;
}

.approach-quote cite {
    color: #2c5530;
    font-weight: 500;
    font-style: normal;
}

/* Inclusive Banner */
.inclusive-banner {
    background: linear-gradient(135deg, #2c5530 0%, #1e3a21 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.inclusive-banner h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.inclusive-banner p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Banner */
.cta-banner {
    background: #2c5530;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.cta-banner p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-style: italic;
}

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

/* Home page CTA special styling */
.cta-section.cta-home {
    background: #2c5530 !important;
    color: white !important;
    padding: 4rem 0;
}

.cta-home h2 {
    color: white !important;
}

.cta-home p {
    color: white !important;
    font-size: 1.1rem;
    font-style: italic;
}

/* Home page CTA with two buttons */
.cta-home .cta-buttons .btn-primary {
    background: white;
    color: #2c5530;
}

.cta-home .cta-buttons .btn-primary:hover {
    background: #f0f8f0;
}

.cta-home .cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-home .cta-buttons .btn-secondary:hover {
    background: white;
    color: #2c5530;
}

.cta-banner .btn-primary {
    background: white;
    color: #2c5530;
    border-color: white;
}

.cta-banner .btn-primary:hover {
    background: #f0f0f0;
}

.cta-banner .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-banner .btn-secondary:hover {
    background: white;
    color: #2c5530;
}

/* About Page - Professional Design */
.about-section .approach {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.about-section .approach h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section .approach h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.about-section .approach p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.about-section .approach ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-section .approach li {
    background: #f8fdf8;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-section .approach li:before {
    content: '✓';
    color: #2c5530;
    font-weight: bold;
    font-size: 1.2rem;
}

.about-section .approach li:hover {
    background: #f0f9f0;
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-section .about-content p {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    margin: 0;
    line-height: 1.8;
    color: #555;
    border-top: 4px solid #2c5530;
}

.about-section .about-content-full {
    background: linear-gradient(135deg, #fefefe 0%, #faf8f5 100%);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(44, 85, 48, 0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(44, 85, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.about-section .about-content-full::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(44, 85, 48, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section .about-content-full h2 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Zeyada', cursive;
    font-size: 3rem;
    letter-spacing: 2px;
}

.about-section .about-content-full h2::after {
    content: '◆';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #d4a574;
    font-size: 1rem;
}

.about-section .about-content-full p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
    color: #4a4a4a;
    font-size: 1.15rem;
    text-align: justify;
}

.about-section .about-content-full p:first-of-type {
    font-size: 1.2rem;
    color: #3a3a3a;
    text-align: center;
    font-style: italic;
    background: rgba(44, 85, 48, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid #d4a574;
}

.about-section .about-content-full p:last-of-type {
    background: #fef6ed;
    padding: 1.2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 0;
}

.about-section .credentials {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: center;
}

.about-section .credentials h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-section .credentials h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.about-section .credentials ul {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.about-section .credentials li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 1.05rem;
}

.about-section .credentials li:before {
    content: "🎓";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .about-section .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section .approach ul {
        grid-template-columns: 1fr;
    }
}

/* Common Page Section Spacing */
.services-section > div,
.specialties-section > div,
.contact-section > div,
.resources-section > div,
.insurance-section > div,
.telehealth-section > div {
    margin-bottom: 3rem;
}

/* Services Page */
.services-content {
    margin-bottom: 3rem;
}

.services-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.session-info h2,
.service-types h2 {
    margin-bottom: 1.5rem;
    color: #2c5530;
}

/* Specialties Page */
.specialties-content {
    margin-bottom: 3rem;
}

.specialties-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.specialty-card {
    background: #fffbcc;
    padding: 1.5rem;
    border-radius: 3px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.specialty-card:nth-child(2),
.specialty-card:nth-child(5) {
    background: #ffefcf;
}

.specialty-card:nth-child(3),
.specialty-card:nth-child(6) {
    background: #fff5d6;
}

.specialty-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.specialty-card h2 {
    color: #2c5530;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.specialty-card p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
}

.specialty-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.specialty-card li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.4;
    font-size: 0.9rem;
}

.specialty-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
    font-size: 1.1rem;
    top: 0.2rem;
}

/* Contact Page - Web 2.0 Design */
.contact-content {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2,
.contact-info h2 {
    margin-bottom: 2rem;
    color: #2c5530;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #2c5530;
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit button {
    background: #2c5530;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(44, 85, 48, 0.2);
}

.form-submit button:hover {
    background: #1e3a21;
}

.contact-info {
    background: #f8fdf8;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.info-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item h3 {
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.info-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
}

/* Hide any browser-generated icons in contact info */
.contact-info input[type="email"]::-webkit-calendar-picker-indicator,
.contact-info input[type="tel"]::-webkit-calendar-picker-indicator,
.contact-info input[type="email"]::-webkit-credentials-auto-fill-button,
.contact-info input[type="tel"]::-webkit-credentials-auto-fill-button {
    display: none !important;
}

.info-item p,
.info-item a {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.info-item a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #1e3a21;
    text-decoration: underline;
}

.info-item ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.info-item ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5530;
    font-weight: bold;
}

/* Emergency Notice */
.emergency-notice {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.emergency-notice h2 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.emergency-notice p {
    color: #856404;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.emergency-notice strong {
    color: #7c5a0b;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Resources Page - Professional Design */
.resources-content {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.resources-content p {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 10px;
    line-height: 1.8;
    color: #856404;
    font-size: 1.05rem;
    margin-bottom: 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.resource-category {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.resource-category h2 {
    margin-bottom: 2rem;
    color: #2c5530;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.resource-category h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.resource-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-item {
    padding: 1.8rem;
    background: #f8fdf8;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: #f0f9f0;
}

.resource-item h3 {
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.resource-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.resource-item p:last-child {
    margin-bottom: 0;
}

.resource-item strong {
    color: #2c5530;
}

.resource-item a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-item a:hover {
    text-decoration: underline;
    color: #1e3a21;
}

/* Special styling for crisis resources */
.resource-category:first-child .resource-item strong {
    color: #dc3545;
}

/* Social Media Section */
.social-media-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    text-align: center;
}

.social-media-section h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.social-media-section > p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    border: 2px solid transparent;
}

.social-link:hover {
    background: #f0f8f0;
    border-color: #2c5530;
}

.social-icon {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 40px;
    height: 40px;
    color: #333;
    transition: color 0.3s ease;
}

/* Instagram specific styling */
.instagram-icon {
    background: white;
    border: 2px solid #E4405F;
    border-radius: 12px;
    padding: 8px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-icon svg {
    width: 28px;
    height: 28px;
    color: #E4405F;
}

.social-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.social-handle {
    color: #666;
    font-size: 0.95rem;
}

.social-link.instagram:hover {
    background: #fafafa;
    border-color: #E4405F;
}

.social-link.instagram:hover .instagram-icon {
    background: #E4405F;
    border-color: #E4405F;
    transform: scale(1.05);
}

.social-link.instagram:hover .instagram-icon svg {
    color: white;
}

.social-link.tiktok:hover {
    background: linear-gradient(135deg, #f0f0ff 0%, #e8e8ff 100%);
}

.social-link.tiktok:hover svg {
    color: #000000;
}

@media (max-width: 968px) {
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Insurance Page - Professional Design */
.insurance-content {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insurance-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.insurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.insurance-info,
.payment-info {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.insurance-info:hover,
.payment-info:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.insurance-info h2,
.payment-info h2 {
    margin-bottom: 2rem;
    color: #2c5530;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.insurance-info h2:after,
.payment-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.insurance-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.insurance-item {
    background: #f8fdf8;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
}

.insurance-item:hover {
    background: #f0f9f0;
}

.insurance-item h3 {
    color: #2c5530;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.insurance-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.insurance-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff9e6;
    border: 1px solid #ffd966;
    border-radius: 6px;
}

.insurance-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    text-align: center;
}

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

.payment-item {
    text-align: left;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.payment-item h3 {
    color: #2c5530;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-item h3:before {
    content: '💰';
    font-size: 1.2rem;
}

.payment-item:nth-child(2) h3:before {
    content: '💳';
}

.payment-item:nth-child(3) h3:before {
    content: '📋';
}

.payment-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.payment-item ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.payment-item ul li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #fafafa;
}

.faq-item h3 {
    margin: 0;
    padding: 1.5rem 2rem;
    color: #333;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2c5530;
    transition: transform 0.3s ease;
}

.faq-item.active h3:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background: #f8fdf8;
}

.faq-item p {
    margin: 0;
    padding: 0 2rem 0 2rem;
    color: #555;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active p {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
    opacity: 1;
}

@media (max-width: 968px) {
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .payment-item ul {
        grid-template-columns: 1fr;
    }
    
    .faq-item h3 {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item h3:after {
        right: 1.5rem;
    }
}

/* Telehealth Page - Professional Design */
.telehealth-content {
    margin-bottom: 4rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.telehealth-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #555;
}

.telehealth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.telehealth-info,
.requirements {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.telehealth-info h2,
.requirements h2 {
    margin-bottom: 2rem;
    color: #2c5530;
    font-size: 1.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.telehealth-info h2:after,
.requirements h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.info-list,
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item,
.requirement-item {
    padding: 1.5rem;
    background: #f8fdf8;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-item:hover,
.requirement-item:hover {
    border-left-color: #2c5530;
    background: #fafafa;
}

.info-item h3,
.requirement-item h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.requirement-item:nth-child(1) h3:before {
    content: '💻';
}

.requirement-item:nth-child(2) h3:before {
    content: '🌐';
}

.requirement-item:nth-child(3) h3:before {
    content: '🏠';
}

.info-item p,
.requirement-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.safety-note {
    margin-top: 2rem;
    padding: 1.2rem;
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    text-align: center;
}

.safety-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

.safety-note strong {
    color: #7c5a0b;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

/* Getting Started Section */
.getting-started {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.getting-started h2 {
    color: #2c5530;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.getting-started h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.step-item {
    background: #f8fdf8;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.step-item:hover {
    border-left-color: #2c5530;
    background: #fafafa;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    background: #2c5530;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-item div:last-child {
    flex: 1;
}

.step-item h4 {
    color: #2c5530;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.step-item p {
    color: #555;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 4rem;
}

.benefits-section h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.benefit-item {
    background: #fffbcc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:nth-child(2) {
    background: #ffefcf;
}

.benefit-item:nth-child(3) {
    background: #fff5d6;
}

.benefit-item:nth-child(4) {
    background: #fffbcc;
}

.benefit-item:hover {
    background: #f0f9f0;
}

.benefit-item h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #555;
    margin: 0;
}

@media (max-width: 968px) {
    .telehealth-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-list {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Approach Section - Professional Design */
.approach-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.approach-section h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.approach-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2c5530;
    border-radius: 2px;
}

.approach-section > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    text-align: center;
}

.approach-section ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.approach-section li {
    background: #f8fdf8;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.approach-section li:before {
    content: '✓';
    color: #2c5530;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.approach-section li:hover {
    background: #f0f9f0;
}

/* Call to Action Sections on All Pages */
.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #f5f9f5;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
    color: #2c5530;
}

.cta-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #1e3a21;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f0f8f0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Quick Links horizontal layout */
.footer-links {
    text-align: center;
}

.footer-links ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-links ul li {
    margin-bottom: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

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

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

.footer-bottom p {
    color: #aaa;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0 0.5rem;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d0d0d0;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-title-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-message-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-bubble::before {
        display: none;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Page-specific styles for other templates */
.page-header {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #2c5530;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem 0;
    background: white;
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    color: #2c5530;
    margin: 2rem 0 1rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Sitemap Styles */
.sitemap-section {
    padding: 4rem 0;
    background: #fafafa;
}

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

.sitemap-category {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #2c5530;
}

.sitemap-category h2 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.sitemap-category li {
    margin-bottom: 1.2rem;
    padding-left: 0;
    line-height: 1.6;
}

.sitemap-category li a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.sitemap-category li a:hover {
    color: #1e3a21;
    text-decoration: underline;
}

.page-description {
    display: block;
    color: #666;
    font-size: 0.95rem;
    font-weight: normal;
    margin-top: 0.3rem;
    line-height: 1.5;
}

.sitemap-info {
    background: linear-gradient(135deg, #f8fdf8 0%, #f0f8f0 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(44, 85, 48, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.sitemap-info h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
}

.sitemap-info p {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.sitemap-info strong {
    color: #2c5530;
}

.sitemap-info a {
    color: #2c5530;
    text-decoration: none;
}

.sitemap-info a:hover {
    text-decoration: underline;
}

/* Login Page Styles */
.login-section {
    padding: 3rem 0;
    min-height: 60vh;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.login-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.login-card h2 {
    color: #2c5530;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me input {
    width: auto;
    margin-right: 0.5rem;
}

.forgot-link {
    color: #2c5530;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.login-footer p {
    color: #666;
}

.login-footer a {
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-info h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.login-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.login-info li {
    padding: 0.75rem 0;
    color: #555;
    font-size: 1.05rem;
}

.security-note {
    background: #f0f8f0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.security-note h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.security-note p {
    color: #555;
    margin: 0;
}

/* Responsive login */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-card {
        padding: 2rem;
    }
}

/* Mobile and Tablet Responsive Styles */
/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #2c5530;
    padding: 0.5rem;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .specialties-list {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Mobile Navigation */
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 0.75rem 0;
        overflow: visible !important;
    }
    
    .nav-container {
        overflow: visible !important;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 9999;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        display: flex !important;
        visibility: hidden;
    }
    
    .nav-menu.active {
        transform: translateY(0) !important;
        visibility: visible !important;
        background-color: white !important;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 5px;
        transition: background 0.2s ease;
        text-align: center;
        font-size: 1.1rem;
        margin: 0.25rem 0;
    }
    
    .nav-menu a:hover {
        background: rgba(44, 85, 48, 0.05);
    }
    
    .nav-menu a.active {
        border-bottom: none;
        background: rgba(44, 85, 48, 0.1);
        font-weight: 600;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 2rem 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-title-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-bubble {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .hero-bubble-main {
        margin: 1.5rem auto 2rem auto;
    }
    
    /* Content Sections Mobile */
    .container {
        padding: 0 1rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    /* Specialties Mobile */
    .specialties-list {
        gap: 1rem;
    }
    
    .specialty-item {
        padding: 1.25rem;
    }
    
    /* About Page Mobile */
    .about-section .about-content-full p {
        text-align: left;
        font-size: 1rem;
    }
    
    .about-section .about-content-full h2 {
        font-size: 2.2rem;
    }
    
    .about-section .credentials {
        padding: 2rem 1.5rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .info-item {
        padding: 1rem 0;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-section {
        text-align: center;
    }
    
    .footer-links ul {
        padding: 0;
    }
    
    /* Resources Grid Mobile */
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    /* Social Media Mobile */
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-link {
        width: 100%;
    }
    
    /* FAQ Mobile */
    .faq-item {
        padding: 1rem;
    }
    
    /* Insurance Cards Mobile */
    .insurance-cards {
        grid-template-columns: 1fr;
    }
    
    /* Sitemap Mobile */
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Styles (max-width: 400px) */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
} 