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

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9faf9;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #51753c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background-color: #b7d1a3;
    padding: 1rem 0;
    position: relative;
}

.site-branding {
    text-align: center;
    margin-bottom: 1rem;
}

.site-title {
    margin: 0;
}

.site-title a {
    color: #333;
    font-size: 2rem;
    font-weight: 300;
}

.site-description {
    color: #4f4f4f;
    font-size: 1.1rem;
    margin: 0;
}

/* Navigation */
.main-navigation {
    text-align: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #4f4f4f;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #4f4f4f;
    font-weight: 500;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #51753c;
    text-decoration: none;
}

/* Submenu */
.has-submenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #b7d1a3;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sub-menu a {
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #b7d1a3 0%, #51753c 100%);
    color: white;
    margin: -2rem -1rem 3rem -1rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Widget Areas */
.home-widgets {
    margin-bottom: 3rem;
}

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

.widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.widget-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.widget h3 {
    color: #51753c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.testimonial {
    border-left: 4px solid #51753c;
    padding-left: 1.5rem;
    font-style: italic;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: bold;
    color: #51753c;
    font-style: normal;
}

/* Footer */
.site-footer {
    background-color: #51753c;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.social-links a {
    color: white;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background-color: #b7d1a3;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(183, 209, 163, 0.8);
    text-decoration: none;
}

/* Page Content Styles */
.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

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

.page-header h1 {
    font-size: 3rem;
    color: #51753c;
    margin-bottom: 1rem;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 1rem;
}

.featured-image.craniosacral-image {
    width: 50%;
    max-width: 300px; /* Never bigger than this */
    height: auto; /* Let height adjust naturally */
    display: block;
    margin: 1rem auto;
}

.featured-image.glymphatic-image {
    width: 50%;
    max-width: 300px; /* Never bigger than this */
    height: auto; /* Let height adjust naturally */
    display: block;
    margin: 1rem auto;
}

.page-content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Image Container for Overlay */
.image-container {
    position: relative;
    display: inline-block;
    width: 50%;
    max-width: 300px;
    margin: 1rem auto;
}

.image-container .featured-image.glymphatic-image {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* CC Overlay Styles */
.cc-overlay {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 0.6rem;
    padding: 1px 4px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.cc-overlay:hover {
    background-color: rgba(81, 117, 60, 0.9);
    color: white;
    text-decoration: none;
    border-color: rgba(81, 117, 60, 0.9);
}

/* Attribution Modal */
.attribution-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.attribution-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.attribution-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

.attribution-close:hover {
    color: #51753c;
}

.attribution-content h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

.attribution-content p {
    margin-bottom: 0.5rem;
}

.attribution-content a {
    color: #51753c;
}

/* Video Container Styles */
.video-container {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* About Page Styles */
.contact-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.contact-sidebar h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: #51753c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3a5429;
    text-decoration: none;
}

/* Contact Page Styles */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-item h3 {
    color: #51753c;
    margin-bottom: 0.5rem;
}

.primary-contact {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.phone-cta {
    display: inline-block;
    font-size: 2rem;
    font-weight: bold;
    color: #51753c;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 3px solid #51753c;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    background-color: #51753c;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #51753c;
}

.submit-button {
    background-color: #51753c;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #3a5429;
}

/* Rates Page Styles */
.rates-content {
    margin-top: 2rem;
}

.rates-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}

.rates-main-content {
    min-width: 0; /* Prevents grid overflow */
}

.rates-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

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

.price-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateY(-5px);
}

.price-item.outcall {
    border: 2px solid #51753c;
}

.price-item h3 {
    color: #51753c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.price-item .small {
    font-size: 0.9rem;
    font-weight: normal;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #51753c;
}

.payment-section,
.booking-cta {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.payment-notice {
    background-color: #f0f8ff;
    padding: 1rem;
    border-left: 4px solid #51753c;
    margin-top: 1rem;
}

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

/* Office Hours Widget Styles */
.office-hours-widget {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.office-hours-widget h3 {
    color: #51753c;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.hours-info p {
    margin-bottom: 1.5rem;
}

.schedule {
    margin: 1.5rem 0;
}

.schedule p {
    margin-bottom: 1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.day-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
    color: #333;
}

.hours {
    text-align: right;
    color: #51753c;
    font-weight: 500;
}

.hours.closed {
    color: #888;
    font-style: italic;
}

.office-hours-widget .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

/* Navigation current page indicator */
.nav-menu a.current {
    color: #51753c;
    font-weight: bold;
}

/* Modalities Page Styles */
.modalities-intro {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.modality-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.modality-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modality-card:hover .modality-image {
    transform: scale(1.05);
}

.modality-content {
    padding: 1.5rem;
}

.modality-content h2 {
    margin-bottom: 1rem;
}

.modality-content h2 a {
    color: #51753c;
    text-decoration: none;
}

.modality-content h2 a:hover {
    text-decoration: underline;
}

.learn-more {
    color: #51753c;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.learn-more:hover {
    text-decoration: underline;
}

.consultation-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

/* Service Page Styles */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.conditions-list {
    list-style: none;
    padding: 0;
}

.conditions-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.conditions-list li:before {
    content: "✓";
    color: #51753c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.session-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

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

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #51753c;
    padding: 0.75rem 1.5rem;
    border: 2px solid #51753c;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #51753c;
    color: white;
    text-decoration: none;
}

/* Lymphatic Page Styles */
.lymph-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.component {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.component h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

.contraindications {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contraindications h2 {
    color: #856404;
    margin-bottom: 1rem;
}

/* Feldenkrais Page Styles */
.feldenkrais-benefits {
    margin: 3rem 0;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-item h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

.source-note {
    background: #f8f9fa;
    padding: 1rem;
    border-left: 4px solid #51753c;
    margin: 2rem 0;
    font-style: italic;
}

/* Education Page Styles */
.education-intro {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.course-overview {
    margin: 3rem 0;
}

.course-benefits {
    margin: 3rem 0;
}

.instructor-philosophy {
    margin: 3rem 0;
    text-align: center;
}

.instructor-philosophy blockquote {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #51753c;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

.instructor-philosophy cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: #51753c;
}

.course-inspiration {
    background: #f0f8ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.course-ctas {
    margin-top: 4rem;
}

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

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.cta-card h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

/* Course Page Styles */
.course-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.course-philosophy {
    margin: 3rem 0;
}

.instructor-quote {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #51753c;
    font-style: italic;
    margin: 2rem 0;
}

.instructor-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: #51753c;
}

.course-structure {
    margin: 4rem 0;
}

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

.day-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.day-card h3 {
    background: #51753c;
    color: white;
    padding: 1.5rem;
    margin: 0;
    text-align: center;
}

.day-content {
    padding: 2rem;
}

.day-content h4 {
    color: #51753c;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.day-content h4:first-child {
    margin-top: 0;
}

.supplies-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.supplies-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.supplies-list li:before {
    content: "•";
    color: #51753c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.inspiration-quote {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
}

.inspiration-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    font-weight: bold;
    color: #51753c;
}

.course-details {
    margin: 4rem 0;
}

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

.detail-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.detail-item h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

.course-inquiry {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 4rem;
}

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

/* Testimonials Page Styles */
.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    margin: 2rem 0 4rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonials-sections {
    margin: 4rem 0;
}

.testimonials-sections section {
    margin-bottom: 4rem;
}

.testimonials-sections h2 {
    color: #51753c;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #51753c;
    margin: 0;
    transition: transform 0.3s ease;
}

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

.testimonial-card p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: bold;
    color: #51753c;
    font-size: 1.1rem;
}

.testimonials-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 4rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #b7d1a3;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 1rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .site-title a {
        font-size: 1.5rem;
    }
    
    .widget-area {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .has-submenu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.1);
    }
    
    /* Mobile responsive for new pages */
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2rem;
    }
    
    /* Rates page mobile responsive */
    .rates-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rates-sidebar {
        position: static;
        order: 1; /* Move sidebar below main content on mobile */
    }
}

/* Blog Styles */
.blog-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-header h1 {
    color: #51753c;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

.blog-post-preview {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-post-preview:hover {
    transform: translateY(-3px);
}

.post-header h2 {
    margin-bottom: 1rem;
}

.post-header h2 a {
    color: #51753c;
    text-decoration: none;
    font-size: 1.8rem;
}

.post-header h2 a:hover {
    text-decoration: underline;
}

.post-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-meta time {
    color: #666;
    font-size: 0.9rem;
}

.category {
    background: #51753c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.author {
    color: #666;
    font-size: 0.9rem;
}

.post-excerpt {
    margin: 1.5rem 0;
    line-height: 1.6;
}

.read-more {
    color: #51753c;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

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

.blog-cta {
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 3rem;
}

.blog-cta h2,
.blog-cta h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

/* Individual Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-post-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #51753c;
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post-header h1 {
    font-size: 3rem;
    color: #51753c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-post-content {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-footer {
    margin-top: 3rem;
}

.post-navigation {
    margin-bottom: 3rem;
}

.nav-link {
    color: #51753c;
    text-decoration: none;
    font-weight: 500;
}

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

.about-author {
    background: #f9faf9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #51753c;
}

.about-author h3 {
    color: #51753c;
    margin-bottom: 1rem;
}

.about-author p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-author a {
    color: #51753c;
    font-weight: 500;
}

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-post-content {
        padding: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}