/* Page styles for "Contact Us - Family Tree Health" — extracted from contact.html */

        .contact-header {
            background: url('../../img/banner.jpg') no-repeat center center/cover;
            padding: 180px 20px 80px;
            color: #fff;
            text-align: center;
        }

        .contact-header h1 {
            margin: 0;
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .contact-container {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h2 {
            color: #8cc63f;
            font-size: 2.2rem;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .contact-info > p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
        }

        .contact-methods {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .contact-methods li {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #444;
        }

        .contact-methods li a {
            color: #444;
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-methods li a:hover {
            color: #8cc63f;
        }

        .method-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #f5f8f5;
            border-radius: 50%;
            margin-right: 20px;
            flex-shrink: 0;
            color: #8cc63f;
        }

        .method-icon svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .booking-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .btn-booking {
            background-color: #2c4c3b;
            color: #fff;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            text-align: center;
            flex: 1;
        }

        .btn-booking:hover {
            background-color: #1f372a;
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-booking.new-patient {
            background-color: #8cc63f;
        }

        .btn-booking.new-patient:hover {
            background-color: #7ab32e;
        }

        /* Form Styles */
        .contact-form-card {
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .contact-form-card h3 {
            color: #333;
            font-size: 1.8rem;
            margin-top: 0;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s, box-shadow 0.3s;
            box-sizing: border-box;
            background-color: #fcfcfc;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #8cc63f;
            box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.15);
            background-color: #fff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            background-color: #8cc63f;
            color: #fff;
            border: none;
            padding: 16px 30px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(140, 198, 63, 0.4);
        }

        .btn-submit:hover {
            background-color: #7ab32e;
            transform: translateY(-2px);
        }

        @media screen and (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .contact-form-card {
                padding: 30px 20px;
            }
            .booking-buttons {
                flex-direction: column;
            }
        }
