
        :root {
            --primary-color: #e2ba83;
            --secondary-color: #849d40;
            --text-color: #333;
            --light-gray: #f5f5f5;
        }

        .bg-wellworth-brown {
            background: #e2ba83;
        }

        .bg-wellworth-green {
            background: #849d40;;
        }
        
        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
        }

        /* Header Styles */
        .top-bar {
            background: #fff;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }

        .top-bar-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-color);
        }

        .contact-info-item i {
            color: var(--primary-color);
        }

        .social-links {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-right: 20px;
            border-right: 1px solid #eee;
        }

        .social-links a {
            color: #666;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: var(--primary-color);
        }

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

        .contact-btn {
            background: var(--primary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .contact-btn:hover {
            background: #9f6930;
        }

        .therapist-btn {
            background: var(--secondary-color);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .therapist-btn:hover {
            background: #4d6c1d;
        }

     

        /* Hero Section */
        .hero-home-img {
            background: linear-gradient(rgba(159, 105, 48, 0.8), rgba(159, 105, 48, 0.8)), url('/assets/images/homepage/slider1-onlinemeetings-sm.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .hero {
           
            padding: 100px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #f8f9fa;
        }

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

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-header h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            min-height: 400px;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(159,105,48,0.15);
        }

        .service-card h3 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-color);
        }

        .service-list {
            list-style: none;
            margin: 0;
            padding: 0;
            flex-grow: 1;
        }

        .service-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            font-size: 1.1rem;
            color: #555;
        }

        .service-list li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

        .service-card .learn-more {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background 0.3s ease;
            text-align: center;
        }

        .service-card .learn-more:hover {
            background:  #9f6930;
        }

        /* Treatments Section */
        .treatments {
            padding: 80px 0;
            background: white;
        }

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

        .treatments-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .treatments-header h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .treatment-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .treatment-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .treatment-content {
            padding: 30px;
            background: white;
        }

        .treatment-content h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .treatment-content p {
            color: #666;
            margin-bottom: 20px;
        }

        /* Stats Section */
        .stats {
            padding: 60px 0;
            background: var(--secondary-color);
            color: white;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 0 20px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        /* Team Section */
        .team {
            padding: 80px 0;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 20px;
        }

        .team-member {
            text-align: center;
        }

        .team-member img {
            width: 100%;
            max-width: 300px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .footer-content h4 {
            margin-bottom: 20px;
        }

        .footer-content a {
            color: white;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .ui-autocomplete {
            max-height: 200px;
            overflow-y: auto;
            overflow-x: hidden;
            z-index: 9999;
        }
        .insurance-item {
            padding: 5px;
            cursor: pointer;
        }
        .insurance-item:hover {
            background-color: #f8f9fa;
        }
        .insurance-name {
            font-weight: bold;
        }
        .insurance-id {
            font-size: 0.8em;
            color: #6c757d;
        }
        .selected-insurance {
            padding: 10px;
            margin-top: 10px;
            background-color: #f8f9fa;
            border-radius: 4px;
            display: none;
        }