/* Page styles for "Pregnancy Yoga - Family Tree Health" — extracted from events/pregnancy-yoga.html */

        .workshop-header {
            background: url('../../img/pregnancy_yoga_header.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-image-box {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .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;
            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;
        }

        .pricing-box {
            font-size: 1.1rem;
            padding: 15px 20px;
            border-left: 4px solid #8cc63f;
            background: #fff;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .pricing-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-box li {
            margin-bottom: 5px;
            font-weight: 500;
        }

        .profile-photo {
            float: left;
            width: 200px;
            max-width: 100%;
            border-radius: 15px;
            margin: 0 20px 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .about-instructor {
            margin-top: 0;
        }

        /* Booking Form Styles */
        .booking-form-section {
            background: #0d2f3b;
            padding: 80px 20px;
            color: #fff;
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .booking-container h2 {
            color: #8cc63f;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .booking-container p {
            margin-bottom: 40px;
            font-size: 1.1rem;
            color: #aebbc1;
        }

        .booking-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            text-align: left;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 15px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            background-color: #8cc63f;
            color: #fff;
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            grid-column: 1 / -1;
            justify-self: center;
        }

        .btn-submit:hover {
            background-color: #7ab32e;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .workshop-section {
                grid-template-columns: 1fr;
            }
            .booking-form {
                grid-template-columns: 1fr;
            }
            .workshop-header h1 {
                font-size: 2.5rem;
            }
            .profile-photo {
                float: none;
                display: block;
                margin: 0 auto 30px auto;
            }
        }
