/*GUEST BOOK */
 /* Target styles matching the reference image layout */
        .guestbook-section {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            font-family: Arial, sans-serif;
        }
        .guestbook-title {
            text-align: center;
            font-family: Georgia, serif;
            font-size: 28px;
            margin-bottom: 5px;
            color: #333;
        }
        .title-divider {
            width: 100%;
            height: 1px;
            background-color: #ddd;
            margin-bottom: 30px;
        }
        .guestbook-form-container {
            max-width: 600px;
            margin: 0 0 0 auto; /* Aligns the fields to the right side like the image */
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-input, .form-select {
            width: 100%;
            padding: 10px;
            border: 1px solid #f39c12; /* Distinct orange/yellow border from reference */
            border-radius: 0px;
            box-sizing: border-box;
            font-size: 14px;
            color: #555;
            background-color: #fff;
        }
        .form-input::placeholder {
            color: #999;
        }
        .label-text {
            display: block;
            margin-bottom: 5px;
            font-size: 15px;
            color: #333;
        }
        .captcha-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
            justify-content: flex-end;
        }
        .captcha-box {
            border: 1px solid #f39c12;
            padding: 8px 15px;
            background-color: #fffde7;
            font-weight: bold;
            font-size: 18px;
            letter-spacing: 3px;
            color: #27ae60;
            text-decoration: line-through; /* Basic styling mock for image text style */
        }
        .captcha-input {
            width: 180px;
        }
        .refresh-btn {
            background: none;
            border: none;
            font-size: 20px;
            color: #999;
            cursor: pointer;
        }
        .btn-wrapper {
            text-align: right;
            margin-top: 20px;
        }
        .submit-btn {
            background-color: #333;
            color: #fff;
            border: none;
            padding: 10px 30px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.2s;
        }
        .submit-btn:hover {
            background-color: #555;
        }
        