/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo h1 {
    font-family: 'Merriweather Sans', serif;
    font-size: 1.8rem;
    color: #2c5f3a;
    font-weight: 700;
    white-space: nowrap;
}

.site-logo a:hover h1 {
    color: #f89520;
    transition: color 0.3s ease;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 0 0 2rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: #333;
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 1rem;
}

.main-navigation a:hover {
    color: #f89520;
    border-bottom-color: #f89520;
}

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

/* Slider Styles */
.home-slider {
    margin: 2rem 0 4rem;
}

.slider-container {
    position: relative;
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide-image {
    width: 100%;
    height: auto;
    display: block;
}

.slide-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(255,255,255,0.95);
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.slide-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.slide-text .highlight {
    color: #f89520;
}

.slider-next {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: rgba(255,255,255,0.8);
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-next:hover {
    background: rgba(255,255,255,1);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #f89520;
}

/* News Section */
.home-news {
    margin: 4rem 0;
}

.home-news h2 {
    font-size: 2.5rem;
    color: #2c5f3a;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Merriweather Sans', serif;
}

/* News Grid - 3 columns by default */
.home-news .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Force 3 columns on desktop */
@media (min-width: 901px) {
    .home-news .news-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 1rem;
    font-size: 1.2rem;
    color: #2c5f3a;
    font-weight: 700;
    line-height: 1.3;
}

.news-item p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 0.95rem;
}

/* Therapy Section */
.home-therapy {
    background: linear-gradient(135deg, #2c5f3a, #3a7549);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
    text-align: center;
}

.home-therapy h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Merriweather Sans', serif;
}

.home-therapy p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Join Section */
.home-join {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: #f8f8f8;
    border-radius: 15px;
}

.home-join h2 {
    font-size: 2.5rem;
    color: #2c5f3a;
    margin-bottom: 0.5rem;
    font-family: 'Merriweather Sans', serif;
}

.conversation-text {
    font-size: 3rem;
    color: #f89520;
    font-weight: 700;
    margin-bottom: 1rem;
    font-style: italic;
}

.home-join > p:last-of-type {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

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

.social-links img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

/* Quote Section */
.call-out {
    background: #fff;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-left: 5px solid #f89520;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-radius: 0 10px 10px 0;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c5f3a;
    text-align: right;
}

/* Footer - Fixed */
.site-footer {
    background: #2c5f3a;
    color: white;
    margin-top: 4rem;
    width: 100%;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.footer-section {
    min-height: 200px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #f89520;
    font-family: 'Merriweather Sans', serif;
}

.footer-section p {
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-family: 'Source Sans Pro', Arial, sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(248,149,32,0.3);
}

.subscribe-btn {
    background: #f89520;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.subscribe-btn:hover {
    background: #e6851c;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(248,149,32,0.4);
}

/* Footer Navigation */
.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 0.8rem;
}

.footer-nav a {
    color: #ccc;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: #f89520;
}

/* Social Links */
.social-section .social-links {
    display: flex;
    gap: 1rem;
}

.social-section .social-links img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.social-section .social-links img:hover {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: none;
}

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

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #f89520;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* SEO Content Sections */
.content-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.content-section h3 {
    font-size: 2.2rem;
    color: #2c5f3a;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Merriweather Sans', serif;
    border-bottom: 3px solid #f89520;
    padding-bottom: 1rem;
}

.content-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f89520;
}

.content-block h4 {
    font-size: 1.4rem;
    color: #2c5f3a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-block p {
    line-height: 1.7;
    color: #444;
    font-size: 1.05rem;
}

/* Info Cards Container */
.info-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #f89520;
}

.info-card h4 {
    font-size: 1.5rem;
    color: #2c5f3a;
    margin-bottom: 1.5rem;
    font-family: 'Merriweather Sans', serif;
}

.info-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.info-card li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
}

.info-card li::before {
    content: "•";
    color: #f89520;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.info-card strong {
    color: #2c5f3a;
}

.card-summary {
    font-style: italic;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}

.short-info {
    background: #2c5f3a;
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid #f89520;
}

.short-info p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Enhanced existing sections */
.home-therapy {
    background: linear-gradient(135deg, #2c5f3a, #3a7549);
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-therapy::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.home-therapy > * {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .header-bar {
        padding: 1rem 1.5rem;
    }
    
    .main-navigation ul {
        gap: 1.5rem;
    }
    
    .main-navigation a {
        font-size: 0.95rem;
    }
}

@media (max-width: 900px) {
    .site-logo h1 {
        font-size: 1.6rem;
    }
    
    .main-navigation ul {
        gap: 1.2rem;
    }
    
    .main-navigation a {
        font-size: 0.9rem;
    }
}

@media (max-width: 900px) {
    .home-news .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .social-section {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
        align-items: center;
    }
    
    .site-logo h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .main-navigation {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .main-navigation a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        border-radius: 5px;
        background: rgba(248,149,32,0.1);
        border-bottom: none;
    }
    
    .main-navigation a:hover {
        background: rgba(248,149,32,0.2);
        color: #2c5f3a;
    }
}
    
    .slide-text h2 {
        font-size: 1.8rem;
    }
    
    .slide-text-overlay {
        padding: 1.5rem;
    }
    
    .home-news .news-grid {
        grid-template-columns: 1fr;
    }
    
    .home-therapy,
    .home-join {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }
    
    .conversation-text {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        margin: 2rem 0;
        padding: 2rem 1rem;
    }
    
    .content-section h3 {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h4 {
        font-size: 1.2rem;
    }
    
    .info-cards-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin: 3rem 0 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.main-page-title {
    font-size: 3rem;
    color: #2c5f3a;
    margin-bottom: 1rem;
    font-family: 'Merriweather Sans', serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
}

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

.contact-section {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #f89520;
}

.contact-section h2 {
    font-size: 1.5rem;
    color: #2c5f3a;
    margin-bottom: 1.5rem;
    font-family: 'Merriweather Sans', serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    line-height: 1.6;
    color: #444;
}

.contact-item strong {
    color: #2c5f3a;
    font-weight: 600;
}

.map-section {
    margin: 4rem 0;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.map-section h2 {
    font-size: 2rem;
    color: #2c5f3a;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Merriweather Sans', serif;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 10px;
}

.map-link {
    text-align: center;
    margin-top: 1rem;
}

.map-link a {
    color: #f89520;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-link a:hover {
    color: #2c5f3a;
}

.contact-form-section {
    margin: 4rem 0;
    background: linear-gradient(135deg, #2c5f3a, #3a7549);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Merriweather Sans', serif;
}

.contact-form-section > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    background: rgba(255,255,255,0.95);
    transition: background 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(248,149,32,0.3);
}

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

.submit-button {
    background: #f89520;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    margin: 1rem auto 0;
    display: block;
}

.submit-button:hover {
    background: #e6851c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248,149,32,0.4);
}

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

.contact-info-cards .info-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 5px solid #f89520;
    transition: transform 0.3s ease;
}

.contact-info-cards .info-card:hover {
    transform: translateY(-5px);
}

.contact-info-cards .info-card h3 {
    font-size: 1.4rem;
    color: #2c5f3a;
    margin-bottom: 1rem;
    font-family: 'Merriweather Sans', serif;
}

.contact-info-cards .info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-action {
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-size: 0.95rem;
}

.card-action strong {
    color: #2c5f3a;
}

/* Navigation current page indicator */
.main-navigation a.current {
    color: #f89520;
    border-bottom-color: #f89520;
}

@media (max-width: 480px) {
    .site-content {
        padding: 0 1rem;
    }
    
    .header-bar {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .site-logo h1 {
        font-size: 1.6rem;
    }
    
    .main-navigation ul {
        gap: 0.8rem;
    }
    
    .main-navigation a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .slide-text h2 {
        font-size: 1.4rem;
    }
    
    .home-news h2,
    .home-therapy h2,
    .home-join h2 {
        font-size: 2rem;
    }
    
    .conversation-text {
        font-size: 1.8rem;
    }
    
    /* Contact page mobile styles */
    .main-page-title {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .map-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .contact-info-cards .info-card {
        padding: 1.5rem;
    }
}