/* Page styles for "Mother’s Group @ The Tree - Family Tree Health" — extracted from events/mothers-group.html */

        .workshop-header {
            background: url('../../img/paul_with_baby.jpg') no-repeat center center/cover;
            padding: 200px 20px 100px;
            color: #fff;
            position: relative;
        }

        .workshop-header-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .workshop-subheading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #f4f4f4;
        }

        .workshop-header h1 {
            margin: 0 0 30px;
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-weight: 700;
        }

        .btn-green {
            background-color: #8cc63f;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            transition: background-color 0.3s;
        }

        .btn-green:hover {
            background-color: #7ab32e;
        }

        .workshop-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .workshop-text h2 {
            color: #8cc63f;
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 30px;
        }

        .workshop-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        .workshop-text ul {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .workshop-lead {
            font-size: 1.2rem !important;
            font-weight: 600;
            color: #2c4a3b !important;
        }

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

        .workshop-details {
            background: #f5f8f5;
            border-radius: 20px;
            padding: 40px;
            margin-top: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .workshop-details h3 {
            color: #0d2f3b;
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .workshop-details p {
            margin-bottom: 10px;
        }

        .workshop-details strong {
            color: #0d2f3b;
        }

        .workshop-details ul {
            margin-bottom: 0;
        }

        /* Host card */
        .host-card {
            display: flex;
            align-items: center;
            gap: 25px;
            background: #fff;
            border: 1px solid #e3ebda;
            border-left: 5px solid #8cc63f;
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .host-card img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .host-card h3 {
            color: #0d2f3b;
            font-size: 1.3rem;
            margin: 0 0 8px;
        }

        .host-card p {
            margin: 0 !important;
            font-size: 1rem !important;
        }

        /* Closing call to action */
        .event-cta-section {
            background: #0d2f3b;
            padding: 80px 20px;
            color: #fff;
            text-align: center;
        }

        .event-cta-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .event-cta-container h2 {
            color: #8cc63f;
            font-size: 2.5rem;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .event-cta-container p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #aebbc1;
            line-height: 1.7;
        }

        .event-cta-container a.contact-link {
            color: #8cc63f;
            text-decoration: none;
            font-weight: bold;
        }

        .event-cta-actions {
            margin-top: 35px;
        }

        @media (max-width: 768px) {
            .workshop-section {
                grid-template-columns: 1fr;
            }
            .workshop-header h1 {
                font-size: 2.5rem;
            }
            .workshop-image-box {
                display: none !important;
            }
            .host-card {
                flex-direction: column;
                text-align: center;
                gap: 18px;
            }
        }
    