/* Old Book Theme CSS */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@1,100&family=Montserrat:wght@400&family=Source+Sans+3:wght@300;600&display=swap');

body {
    font-family: 'Noto Serif', 'Montserrat', serif;
    font-weight: 400;
    background-color: #fff9e8;
    color: #5b4636;
    line-height: 1.8;
    margin: 0 !important;
    padding: 0 !important;
}

/* Add a spacer to push content below the fixed header */
.content-spacer {
    height: 120px;
    width: 100%;
    display: block;
}

/* If you don't have a content-spacer div, add padding to the first main content */
main {
    padding: 160px 0 40px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 100%;
    text-align: center;
    padding: 0 40px;
}

header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100% !important;
    z-index: 2147483647 !important;
    padding: 10px 40px;
    border-bottom: 2px solid #c8b89a;
    background-color: #fff9e8 !important;
    text-align: center;
    box-sizing: border-box;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
    margin: 0 !important;
}

/* Ensure header stays above all other elements */
header.site-header * {
    position: relative;
    z-index: 1;
}

.header-top {
    padding-bottom: 10px;
    text-align: center;
}

.logo-container {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.logo-svg {
    margin-right: 15px;
}

.logo-text {
    font-family: 'IM Fell English SC', serif;
    font-size: 2.5em;
}

.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.social-nav, .main-nav, .controls-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.main-nav {
    justify-content: center;
}

.controls-nav {
    justify-content: flex-end;
}

.social-nav a, .main-nav a, .controls-nav a, .controls-nav button {
    text-decoration: none;
    color: #5b4636;
    font-family: 'IM Fell English SC', serif;
    font-size: 1.2em;
    background: none;
    border: none;
    cursor: pointer;
}

.social-nav svg {
    transition: transform 0.2s ease-in-out;
}

.social-nav a:hover svg {
    transform: scale(1.2);
}

#theme-toggle {
    padding: 0;
}

#theme-toggle .theme-icon {
    width: 24px;
    height: 24px;
}

main {
    padding: 120px 0 40px 0;
    position: relative;
    z-index: 1;
}

.home-section h2 {
    text-align: center;
    font-size: 3em;
}

.illustration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    gap: 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.illustration-item {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Base desktop/tablet layout */
.home-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each item wrapper */
.home-gallery .illustration-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Images */
.home-gallery .illustration-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .home-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .home-gallery {
    grid-template-columns: 1fr;
  }
}

.view-all-container {
    text-align: center;
    margin-top: 30px;
}

/* ENHANCED IMAGE DISPLAY SYSTEM */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    padding: 0;
    background: transparent;
    width: fit-content;
    max-width: 100%;
}

/* Responsive image scaling system */
.uploaded-image, .gallery-image, .content-image {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: min(90vw, 1200px);
    max-height: min(80vh, 800px);
    min-width: 200px;
    min-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Special handling for very wide images (landscape) */
.uploaded-image[data-.aspect="landscape"], 
.gallery-image[data-aspect="landscape"],
.content-image[data-aspect="landscape"] {
    max-width: min(95vw, 1400px);
    max-height: min(70vh, 600px);
}

/* Special handling for very tall images (portrait) */
.uploaded-image[data-aspect="portrait"], 
.gallery-image[data-aspect="portrait"],
.content-image[data-aspect="portrait"] {
    max-width: min(70vw, 800px);
    max-height: min(85vh, 1000px);
}

/* Square images */
.uploaded-image[data-aspect="square"], 
.gallery-image[data-aspect="square"],
.content-image[data-aspect="square"] {
    max-width: min(80vw, 800px);
    max-height: min(80vh, 800px);
}

/* Hover effects for better interaction */
.uploaded-image:hover, .gallery-image:hover, .content-image:hover {
    transform: scale(1.02);
    box-shadow: none;
    cursor: pointer;
}

.container.full-width {
    max-width: 100%;
    border-left: none;
    border-right: none;
    overflow-x: auto;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #dcd0b8;
    margin: 40px auto;
    width: 80%;
}

.content-split {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: fit-content;
}

.content-split .split-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-split .split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.content-split .split-right h3 {
    font-size: 3em;
    text-align: center;
    margin-left: -10px;
}

.content-split .split-right p {
    text-align: center;
    margin-left: -10px;
}

/* Enhanced image handling in content splits */
.content-split img {
    max-width: min(90%, 600px);
    height: auto;
    display: block;
    margin: 0;
    object-fit: contain;
    border-radius: 8px;
}

.contact-info {
    text-align: center;
}

.modal-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.7); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 10000;
}

.modal-content { 
    position: relative; 
    background: #fdf6e3; 
    padding: 40px; 
    text-align: center; 
    border: 2px solid #c8b89a;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}

.modal-close { 
    position: absolute; 
    top: 10px; 
    right: 15px; 
    font-size: 24px; 
    cursor: pointer; 
}

.modal-btn { 
    margin: 10px; 
    min-width: 150px; 
}

.site-footer-main {
    text-align: center;
    padding: 20px;
    border-top: 2px solid #c8b89a;
    margin-top: 40px;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav .social-nav {
    justify-content: center;
}

.dev-credit {
    font-size: 0.8em;
    margin-top: 15px;
    color: #888;
}

.dev-credit a { 
    color: inherit; 
}

.button-group {
    margin-top: 5px;
    display: flex;
    gap: 15px;
    margin-left: -10px;
}

/* Enhanced Lightbox styles for better image display */
.lightbox-overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.9); 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    z-index: 100000;
    padding: 20px;
    box-sizing: border-box;
}

.lightbox-close { 
    position: absolute; 
    top: -15px; 
    right: -15px; 
    background: #5b4636; 
    color: #fff9e8; 
    border-radius: 50%; 
    width: 35px; 
    height: 35px; 
    line-height: 35px; 
    text-align: center; 
    cursor: pointer;
    font-weight: bold;
    z-index: 1;
}

.lightbox-image { 
    max-width: min(90vw, 1400px);
    max-height: min(80vh, 1000px);
    min-width: 200px;
    min-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.lightbox-title { 
    text-align: center; 
    margin-top: 15px;
    font-size: 1.1em;
    font-weight: 600;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.lightbox-date {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.lightbox-prev, .lightbox-next { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(91, 70, 54, 0.8); 
    color: #fff9e8; 
    padding: 15px 12px; 
    cursor: pointer; 
    user-select: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.2s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(91, 70, 54, 0.9);
}

.lightbox-prev { 
    left: 10px; 
}

.lightbox-next { 
    right: 10px; 
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e9e9e9;
    box-shadow: none;
}

.btn:active {
  transform: translate(2px, 2px);
}

.btn:not([disabled]):active {
  transform: translate(2px, 2px);
}

.illustration-page h1 {
    text-align: center;
    font-size: 2.5em;
}

.year-heading {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 2em;
}

.lightbox-content { 
    position: relative; 
    background: #fff9e8; 
    padding: 20px; 
    max-width: 95vw; 
    max-height: 95vh; 
    border-radius: 8px;
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-50 {
  appearance: button;
  background-color: #fbeee0;
  border: 2px solid #422800;
  border-radius: 30px;
  box-shadow: none;
  color: #422800;
  cursor: pointer;
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 60px;
  margin: 0 5px 10px 0;
  overflow: visible;
  padding: 0 30px;
  text-align: center;
  text-decoration: none;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
  box-sizing: border-box;
}

.button-50:focus {
  text-decoration: none;
}

.button-50:hover {
  background-color: #fff;
}

.button-50:active {
  transform: translate(2px, 2px);
}

.button-50:not([disabled]):active {
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .button-50 {
    min-width: 120px;
    padding: 0 25px;
  }
}

/* Button 74 Design */
.button-74 {
  background-color: #fbeee0;
  border: 2px solid #422800;
  border-radius: 30px;
  box-shadow: #422800 4px 4px 0 0;
  color: #422800;
  cursor: pointer;
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 0 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-74:hover {
  background-color: #fff;
}

.button-74:active {
  box-shadow: #422800 2px 2px 0 0;
  transform: translate(2px, 2px);
}

@media (min-width: 768px) {
  .button-74 {
    min-width: 120px;
    padding: 0 25px;
  }
}

/* ============================================ */
/* HAMBURGER MENU - MOBILE NAVIGATION STYLES */
/* ============================================ */

/* Hamburger menu button - hidden by default on desktop */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2147483647;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.hamburger-menu:focus {
    outline: none;
}

.hamburger-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #5b4636;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger animation when menu is open */
.hamburger-menu.active .hamburger-icon:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger-menu.active .hamburger-icon:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-menu.active .hamburger-icon:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ============================================ */
/* MOBILE RESPONSIVE STYLES */
/* ============================================ */

/* ============================================ */
/* MOBILE RESPONSIVE STYLES - REPLACE YOUR MOBILE SECTION */
/* ============================================ */

@media (max-width: 768px) {
    /* Compact header for mobile */
    header.site-header {
        padding: 12px 20px !important;
        height: auto;
        min-height: 80px;
    }

    /* Header top - Logo centered, hamburger on right */
    .header-top {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        height: 80px;
        position: relative !important;
    }

    /* Logo for mobile - BIGGER and centered */
    .logo-img {
        max-width: 120px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    .logo-text {
        font-size: 2em !important;
        text-align: center !important;
    }

    /* Show hamburger menu on mobile - BIGGER positioned on the right */
    .hamburger-menu {
        display: flex !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
        width: 35px !important;
        height: 30px !important;
        z-index: 2147483647 !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

    /* Hamburger icon lines - BIGGER */
    .hamburger-icon {
        width: 35px !important;
        height: 4px !important;
        background-color: #5b4636 !important;
        border-radius: 2px !important;
    }

    /* Hide desktop header bottom by default on mobile */
    .header-bottom {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #fff9e8 !important;
        z-index: 2147483646 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        overflow-y: auto !important;
        padding: 0 !important;
    }

    /* Show menu when active */
    .header-bottom.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Style navigation items for mobile fullscreen menu */
    .header-bottom .social-nav,
    .header-bottom .main-nav,
    .header-bottom .controls-nav {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
        margin: 25px 0 !important;
    }

    /* Keep social icons horizontal */
    .header-bottom .social-nav {
        flex-direction: row !important;
        gap: 45px !important;
    }

    .header-bottom .main-nav a,
    .header-bottom .controls-nav a {
        font-size: 2.2em !important;
        font-weight: 600 !important;
        color: #5b4636 !important;
        text-decoration: none !important;
        transition: color 0.3s !important;
        padding: 12px 0 !important;
    }

    .header-bottom .main-nav a:hover,
    .header-bottom .controls-nav a:hover {
        color: #8b6f47 !important;
    }

    .header-bottom .social-nav a svg {
        width: 38px !important;
        height: 38px !important;
    }

    /* Adjust main content padding to account for bigger header */
    main {
        padding: 100px 0 20px 0 !important;
    }

    /* Other mobile adjustments */
    .container {
        padding: 15px;
    }

    .illustration-grid {
        grid-template-columns: 1fr;
    }

    .content-split {
        flex-direction: column;
        gap: 20px;
    }

    .content-split img {
        max-width: min(95vw, 500px);
        height: auto;
    }

    /* Mobile image scaling adjustments */
    .uploaded-image, .gallery-image, .content-image {
        max-width: min(95vw, 500px);
        max-height: min(70vh, 500px);
        min-width: 150px;
        min-height: 100px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    .btn, .button-50 {
        padding: 10px 20px;
        font-size: 12px;
    }

    .lightbox-image {
        max-width: min(95vw, 500px);
        max-height: min(75vh, 500px);
        min-width: 150px;
        min-height: 100px;
    }

    .lightbox-prev, .lightbox-next {
        padding: 12px 8px;
        font-size: 16px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    header.site-header {
        padding: 10px 15px !important;
        min-height: 70px;
    }

    .header-top {
        height: 70px;
    }

    .logo-img {
        max-width: 100px !important;
    }

    .logo-text {
        font-size: 1.7em !important;
    }

    .hamburger-menu {
        right: 15px !important;
        width: 32px !important;
        height: 28px !important;
    }

    .hamburger-icon {
        width: 32px !important;
        height: 4px !important;
    }

    main {
        padding: 85px 0 20px 0 !important;
    }

    .uploaded-image, .gallery-image, .content-image {
        max-width: min(98vw, 350px);
        max-height: min(65vh, 350px);
        min-width: 120px;
        min-height: 80px;
    }

    .character-item img {
        max-width: min(95vw, 300px);
        max-height: min(55vh, 300px);
        min-width: 150px;
    }

    .lightbox-image {
        max-width: min(98vw, 350px);
        max-height: min(70vh, 350px);
    }

    .header-bottom .main-nav a,
    .header-bottom .controls-nav a {
        font-size: 1.8em !important;
    }
}
/* Very small screens */
@media (max-width: 480px) {
    header.site-header {
        padding: 5px 10px !important;
        min-height: 55px;
    }

    .header-top {
        height: 55px;
    }

    .logo-img {
        max-width: 45px !important;
    }

    .logo-text {
        font-size: 1.1em !important;
    }

    main {
        padding: 70px 0 20px 0 !important;
    }

    .uploaded-image, .gallery-image, .content-image {
        max-width: min(98vw, 350px);
        max-height: min(65vh, 350px);
        min-width: 120px;
        min-height: 80px;
    }

    .character-item img {
        max-width: min(95vw, 300px);
        max-height: min(55vh, 300px);
        min-width: 150px;
    }

    .lightbox-image {
        max-width: min(98vw, 350px);
        max-height: min(70vh, 350px);
    }

    .header-bottom .main-nav a,
    .header-bottom .controls-nav a {
        font-size: 1.5em !important;
    }
}
/* Very small screens */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5em;
    }

    .site-header {
        padding: 10px;
    }

    main {
        padding: 90px 0 20px 0;
    }

    .uploaded-image, .gallery-image, .content-image {
        max-width: min(98vw, 350px);
        max-height: min(65vh, 350px);
        min-width: 120px;
        min-height: 80px;
    }

    .character-item img {
        max-width: min(95vw, 300px);
        max-height: min(55vh, 300px);
        min-width: 150px;
    }

    .lightbox-image {
        max-width: min(98vw, 350px);
        max-height: min(70vh, 350px);
    }

    .header-bottom .main-nav a,
    .header-bottom .controls-nav a {
        font-size: 1.5em;
    }
}

.contact-info h3 {
    font-size: 2.5em;
}

.contact-info p {
    font-size: 1.2em;
}

/* Image upload and display enhancements */
.image-upload-area {
    border: 2px dashed #c8b89a;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background-color: #fdf6e3;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.image-upload-area:hover {
    border-color: #5b4636;
    background-color: #fcf3e0;
}

.image-upload-area.dragover {
    border-color: #5b4636;
    background-color: #fcf3e0;
    transform: scale(1.02);
}

/* Image preview container */
.image-preview-container {
    margin: 20px auto;
    text-align: center;
    width: fit-content;
    max-width: 100%;
}

.image-preview {
    display: inline-block;
    margin: 10px;
    text-align: center;
    width: fit-content;
}

.image-preview img {
    max-width: min(90vw, 800px);
    max-height: min(70vh, 600px);
    min-width: 150px;
    min-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-preview img:hover {
    transform: scale(1.05);
    box-shadow: none;
}

.image-preview .image-title {
    margin-top: 10px;
    font-size: 1.1em;
    font-weight: 600;
    color: #5b4636;
}

/* Gallery responsive grid that adapts to image sizes */
.responsive-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.responsive-gallery .gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.responsive-gallery .gallery-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.responsive-gallery .gallery-item img:hover {
    box-shadow: none;
}

/* Ensure any img tag gets proper responsive treatment */
img:not(.logo-svg):not(.theme-icon) {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Special class for full-width images when needed */
.full-width-image {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: auto;
    object-fit: contain;
}

/* Auto-scaling image wrapper */
.auto-scale-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: fit-content;
    max-width: 100%;
}

.about-section {
    text-align: center;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fbeee0;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    padding: 10px 0;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 10px;
}

.dropdown-menu .dropdown-item {
    color: #422800;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
    border: none;
    box-shadow: none;
    line-height: normal;
    font-size: 16px;
    border-radius: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #fff;
}

.dropdown-menu .dropdown-item:active {
    transform: none;
    box-shadow: none;
}

/* Show the dropdown menu on hover or when active */
.dropdown.show .dropdown-menu {
    display: block;
}

/* FAQ Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #c8b89a;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    background-color: #f0e8d8;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e0d8c8;
}

.faq-question p {
    margin: 0;
    color: #5b4636;
}

.faq-toggle-icon {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 15px 20px;
    background-color: #fff9e8;
    border-top: 1px solid #c8b89a;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-question.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.form-group {
    text-align: left;
}

.button-83 {
  appearance: button;
  background-color: transparent;
  background-image: linear-gradient(to bottom, #fff, #f8eedb);
  border: 0 solid #e5e7eb;
  border-radius: .5rem;
  box-sizing: border-box;
  color: #482307;
  column-gap: 1rem;
  cursor: pointer;
  display: flex;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 90%;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 0 auto;
  outline: 2px solid transparent;
  padding: 0.8rem 1.2rem;
  text-align: center;
  text-transform: none;
  transition: all .1s cubic-bezier(.4, 0, .2, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  box-shadow: -6px 8px 10px rgba(81,41,10,0.1),0px 2px 2px rgba(81,41,10,0.2);
}

.button-83:active {
  background-color: #f3f4f6;
  box-shadow: -1px 2px 5px rgba(81,41,10,0.15),0px 1px 1px rgba(81,41,10,0.15);
  transform: translateY(0.125rem);
}

.button-83:focus {
  box-shadow: rgba(72, 35, 7, .46) 0 0 0 4px, -6px 8px 10px rgba(81,41,10,0.1), 0px 2px 2px rgba(81,41,10,0.2);
}