       /* Global Styles */
        @font-face {
            font-family: 'Realwood';
            src: url('/static/fonts/realwood-regular.otf') format('opentype');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }
        @font-face {
            font-family: 'Realwood';
            src: url('/static/fonts/realwood-inline.otf') format('opentype');
            font-weight: normal;
            font-style: italic;
            font-display: swap;
        }
        @font-face {
            font-family: 'Realwood';
            src: url('/static/fonts/realwood-outline.otf') format('opentype');
            font-weight: bold;
            font-style: normal;
            font-display: swap;
        }

        * { box-sizing: border-box; }
        
        body {
            margin: 0;
            min-height: 100vh;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            padding: 0;
            position: relative;
        }
        a {
            color:#963c00;
        }
        .central-box p a {
            font-weight: bold;
        }
        a:hover {
            color: #e67e22;
        }
        /* Centered H1 - Dark text by default */
        h1 {
            color: #1a1a1a;
            font-size: 2.4rem;
            font-weight: bold;
            margin-top: 20px;
            text-align: center;
        }
        .contact-page h1 {
            font-size: 1.6rem;
        }
        .logo {
            text-decoration: none;
            font-family: 'Realwood', serif;
            text-align: center;
            color: #40513b;
            font-weight: normal;
            margin-top: 50px;
            font-size: 3.5rem;            
        }
        /* Position background image absolutely */
        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        /* Central White Content Box */
        .central-box {
            background-color: #fff;
            padding: 18px;
            width: 93%;
            max-width: 700px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            margin-top: 10px; /* Space from the H1 */
            margin-bottom: 60px; /* Space from the bottom of the page */
            text-align: left;
            opacity: .9;
        }

        /* Style for the specified initial paragraph */
        .central-box p.intro {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        /* Heading Styles inside the box */
        .central-box h2 {
            font-family: 'Realwood', serif;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 15px;
            color: #40513b;
            font-style: normal;
            font-weight: normal;
        }
        .privacy-page h2 {
            font-family: inherit;
        }

        /* Paragraph styles for the about section (the points) */
        .central-box .about-points {
            font-size: 1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 15px;
        }

        /* Earthy, Bright Link Color (a vibrant copper/orange) */
        /* This color is distinctly earthy but bright enough for links */
        .central-box a.contact-link {
            display: inline-block;
            background-color: #e67e22; /* Vibrant copper/orange */
            color: #000;
            padding: 12px 24px 9px; /* Adjusted padding for a more button-like appearance */
            border-radius: 4px;
            font-size: 1rem;
            margin-top: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.2s, text-decoration 0.2s;
        }

        .central-box a.contact-link:hover {
            background-color: #b06533; /* Darker copper/orange for hover */
            text-decoration: none; /* No underline on the button */
        }

        /* Footer Styling */
        footer {
            width: 100%;
            text-align: center;
            padding: 40px 20px;
            margin-top: auto; /* Pushes to bottom */
            box-sizing: border-box;
            color: #fff; /* Main footer text color */
        }
        footer p {
            background-color: #40513B;
            padding: 9px 18px 6px;
            display: inline-block;
        }

        /* Earthy, Bright Link Color for the footer link */
        .footer-link {
            color: #e5d9b6; /* Standard link color is the theme color */
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s, text-decoration 0.2s;
        }

        .footer-link:hover {
            color: #e67e22;
            text-decoration: underline;
        }

        /* Responsive Adjustments */
        /* Contact Form Styles */
        #lcf-contactform-wrap {
            margin-top: 30px;
        }

        #lcf-contactform {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        #lcf-contactform label {
            display: block;
            margin: 8px 0 0;
            font-weight: 600;
            color: #333;
            font-size: 1rem;
        }

        #lcf-contactform input[type="text"],
        #lcf-contactform input[type="email"],
        #lcf-contactform textarea {
            display: block;
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        #lcf-contactform input[type="text"]:focus,
        #lcf-contactform input[type="email"]:focus,
        #lcf-contactform textarea:focus {
            outline: none;
            border-color: #d2793e;
            box-shadow: 0 0 0 3px rgba(210, 121, 62, 0.1);
        }

        #lcf-contactform textarea {
            resize: vertical;
            min-height: 150px;
        }

        #lcf-contactform input.lcf_contactform_error,
        #lcf-contactform textarea.lcf_contactform_error {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        .lcf-submit {
            margin-top: 10px;
            display: flex;
            gap: 10px;
        }

        /* Submit button as button element */
        .lcf-submit-btn {
            background-color: #d2793e;
            color: #000;
            padding: 12px 32px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 44px;
        }

        .lcf-submit-btn:hover:not(:disabled) {
            background-color: #b06533;
        }

        .lcf-submit-btn:active:not(:disabled) {
            transform: scale(0.98);
        }

        .lcf-submit-btn:disabled {
            background-color: #b06533;
            cursor: not-allowed;
            opacity: 0.9;
        }

        /* Spinner Animation */
        .lcf-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid #fff;
            border-radius: 50%;
            animation: lcf-spin 0.8s linear infinite;
        }

        @keyframes lcf-spin {
            to {
                transform: rotate(360deg);
            }
        }

        .hidden {
            display: none;
        }

        .lcf-submit-text {
            display: inline;
        }

        .lcf-submit-text.hidden {
            display: none;
        }

        .screen-reader-text {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border-width: 0;
        }

        .lcf-success-msg {
            background-color: #d4edda;
            color: #125522;
            padding: 12px 16px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }

        .error {
            background-color: #f8d7da;
            color: #721c24;
            padding: 12px 16px;
            border-radius: 4px;
            margin-bottom: 20px;
            border: 1px solid #f5c6cb;
        }
        /* for min size tablet and larger */
        @media (min-width: 768px) {
            .central-box {
                width: 80%;
                padding: 40px;
            }
        }