/* DivineVines Landing Page Styling */

/* Use the theme variables from your main CSS */
:root {
    --olive: #556B2F;
    --light-olive: #6B8E23;
    --off-white: #F5F5F5;
    --dark-olive: #3A4D1F;
    --accent: #8A9A5B;
}

/* Landing page specific styling */
.landing-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--dark-olive);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.landing-container h1 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--off-white);
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

.landing-container p {
    font-size: 1.2rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.landing-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Remove the filter that inverts images, since you likely want to see the actual wine image */
    filter: none;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent);
    color: var(--off-white);
    border: none;
    border-radius: 4px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: var(--light-olive);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}

.reset-link-box {
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed #ccc;
}

.reset-link-box input {
    width: 100%;
    padding: 8px;
    font-family: monospace;
}

.faq-contact-button {
    margin-top: 30px;
    text-align: center;
}

.faq-contact-button .btn-contact {
    padding: 10px 20px;
    font-size: 16px;
}

.button.white-text {
    color: white !important;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #5e0b15;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
}

.faq-category-title {
    font-size: 1.8rem;
    margin-top: 2rem;
    font-family: 'Lora', serif;
    color: #7b3f00;
}

.faq-category {
    margin-bottom: 2rem;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-left: 5px solid #7b3f00;
    border-radius: 8px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 1rem;
    color: #333;
    margin-left: 1rem;
}

.faq-note {
    margin-top: 2rem;
    font-style: italic;
    color: #555;
}

.faq-contact-button {
    margin-top: 1rem;
}

.elegant-button {
    background-color: #7b3f00;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.elegant-button:hover {
    background-color: #5e0b15;
    color: #fff;
}

.urgent-contact {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #222;
}

/* ========== ABOUT PAGE STYLES ========== */

.about-hero {
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    color: white;
}

.about-hero h1 {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    font-weight: 500;
    font-style: italic;
    color: black;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.about-stephen,
.about-wines {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.about-stephen img {
    width: 1200px;
    border-radius: 10px;
}

.about-wines img {
    width: 545px;
    border-radius: 10px;
}

.search-products {
    padding: 2rem;
    text-align: center;
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Admin Dashboard Responsive Styles */
@media screen and (max-width: 768px) {
    /* Landing page mobile styles */
    .landing-container {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .landing-container h1 {
        font-size: 2.2rem;
    }

    .landing-container p {
        font-size: 1rem;
    }

    .button-row {
        flex-direction: column;
        gap: 15px;
    }

    .btn-contact {
        width: 100%;
    }

    /* Admin Dashboard mobile styles */
    .admin-dashboard {
        padding: 10px;
    }

    .admin-dashboard h1 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }

    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 10px !important;
        margin-top: 20px !important;
    }

    .card {
        padding: 15px !important;
    }

    .card h4 {
        font-size: 1.1rem;
    }

    .card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .card-icon {
        font-size: 18px !important;
    }

    .dashboard-footer {
        margin: 10px !important;
        text-align: center;
    }

    /* Adjust logout button placement */
    .admin-dashboard > div:nth-child(2) {
        text-align: center !important;
        margin: 10px !important;
    }

    /* Welcome message */
    .admin-dashboard p:first-child {
        text-align: center !important;
        margin: 10px !important;
        font-size: 1rem;
    }

    /* About page mobile styles */
    .about-hero h1 {
        font-size: 2.5rem !important;
        top: 1rem !important;
        padding: 0 1rem;
        text-align: center;
    }

    .about-stephen,
    .about-wines {
        flex-direction: column !important;
        padding: 1rem !important;
        gap: 1rem !important;
    }

    .about-stephen img,
    .about-wines img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .about-stephen div,
    .about-wines div {
        order: 2;
    }

    .about-stephen img {
        order: 1;
    }

    .about-wines img {
        order: 1;
    }

    .search-products {
        padding: 1.5rem 1rem !important;
    }

    .search-products h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    /* Landing page small mobile styles */
    .landing-container h1 {
        font-size: 1.8rem;
    }

    /* Admin Dashboard small mobile styles */
    .admin-dashboard h1 {
        font-size: 1.5rem !important;
    }

    .card {
        padding: 12px !important;
    }

    .card h4 {
        font-size: 1rem;
    }

    .card p {
        font-size: 0.85rem;
    }

    /* About page small mobile styles */
    .about-hero {
        height: 250px !important;
    }

    .about-hero h1 {
        font-size: 2rem !important;
        top: 0.5rem !important;
    }

    .about-stephen,
    .about-wines {
        padding: 0.8rem !important;
    }

    .about-stephen h2,
    .about-wines h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .about-stephen p,
    .about-wines p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .search-products h3 {
        font-size: 1.1rem;
    }
}
/* ========== CONTACT SUBMISSION SUCCESS PAGE ========== */

.contactSubmissions.success {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.message-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.success-message {
    margin: 25px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.navigation-options {
    margin-top: 30px;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.contactSubmissions.success .button {
    min-width: 180px;
    margin: 5px;
    background-color: #7b3f00; /* Match contact form button color */
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 30px; /* Match the rounded style */
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contactSubmissions.success .button:hover {
    background-color: #5e0b15; /* Match contact form hover color */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.contactSubmissions.success .button i {
    margin-right: 6px;
}

.contactSubmissions.success .secondary {
    background-color: #6c757d;
}

.contactSubmissions.success .secondary:hover {
    background-color: #5a6268;
}

.contactSubmissions.success h2 {
    color: #28a745;
}

.contactSubmissions.success h3 {
    margin-bottom: 15px;
    font-size: 1.3em;
    color: var(--dark-olive);
}

i.fas.fa-check-circle {
    font-size: 1.5em;
    vertical-align: middle;
    margin-right: 10px;
    color: #28a745;
}

/* Add to your mobile responsive section */
@media screen and (max-width: 768px) {
    /* Success page mobile styles */
    .contactSubmissions.success {
        padding: 15px;
        margin: 20px auto;
    }

    .message-box {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .contactSubmissions.success .button {
        width: 100%;
        margin: 5px 0;
    }

    .success-message {
        font-size: 1em;
    }

    .contactSubmissions.success h2 {
        font-size: 1.6rem;
    }

    .contactSubmissions.success h3 {
        font-size: 1.2em;
    }
}

@media screen and (max-width: 480px) {
    /* Success page small mobile styles */
    .message-box {
        padding: 15px;
    }

    .contactSubmissions.success h2 {
        font-size: 1.4rem;
    }

    .contactSubmissions.success h3 {
        font-size: 1.1em;
    }

    .success-message {
        font-size: 0.9em;
        margin: 15px 0;
    }
}

/* ========== CONTACT FORM STYLES ========== */

.contactSubmissions.index {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #5e0b15;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

.contact-intro {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.contact-form-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #7b3f00;
}

.styled-form fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 1.05rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus, .form-textarea:focus {
    border-color: #7b3f00;
    outline: none;
    box-shadow: 0 0 5px rgba(123, 63, 0, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.char-counter {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
}

.checkbox-field label {
    margin-left: 8px;
    font-weight: normal;
}

.recaptcha-container {
    margin: 20px 0;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.contact-submit-button {
    background-color: #7b3f00;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-button:hover {
    background-color: #5e0b15;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.required {
    color: #d9534f;
}

/* ========== LOGIN AND PASSWORD RESET PAGES STYLES ========== */

/* Common styles for login and reset pages */
.users.form {
    max-width: 700px; /* Further increased width */
    margin: 60px auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border-left: 8px solid #7b3f00;
}

/* Heading styles for both h2 and h3 */
.users.form h2,
.users.form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Significantly increased */
    margin-bottom: 2rem;
    color: #5e0b15;
    border-bottom: 3px solid #ccc;
    padding-bottom: 0.8rem;
    text-align: center;
}

.users.form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.users.form legend {
    font-size: 1.8rem; /* Significantly increased */
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
    text-align: center;
    width: 100%;
    font-family: 'Lora', serif;
}

.users.form .input {
    margin-bottom: 30px;
}

.users.form label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 1.6rem; /* Significantly increased */
}

.users.form input[type="email"],
.users.form input[type="password"] {
    width: 100%;
    padding: 18px; /* Increased for taller fields */
    border: 2px solid #ddd; /* Thicker border */
    background-color: #fff;
    border-radius: 6px;
    font-size: 1.5rem; /* Significantly increased */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.users.form input[type="email"]:focus,
.users.form input[type="password"]:focus {
    border-color: #7b3f00;
    outline: none;
    box-shadow: 0 0 8px rgba(123, 63, 0, 0.3);
}

/* reCAPTCHA alignment */
.g-recaptcha {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    transform: scale(1.2); /* Made even larger */
    transform-origin: center;
}

/* Forgot password link styling */
.users.form p {
    text-align: center;
    margin-top: 25px;
    font-size: 1.5rem; /* Significantly increased */
}

.users.form .button {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 30px;
    background-color: #7b3f00;
    color: white;
    font-size: 1.6rem; /* Significantly increased */
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

.users.form .button:hover {
    background-color: #5e0b15;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Style the submit button to match other buttons */
.users.form input[type="submit"],
.users.form button {
    background-color: #7b3f00;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.8rem; /* Significantly increased */
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    font-weight: 500;
}

.users.form input[type="submit"]:hover,
.users.form button:hover {
    background-color: #5e0b15;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Specific styles for password reset page */
.users.form .password-requirements {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 5px solid #7b3f00;
    font-size: 1.5rem; /* Significantly increased */
}

/* Back to login link */
.back-to-login {
    text-align: center;
    margin-top: 25px;
}

.back-to-login a {
    color: #7b3f00;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.5rem; /* Significantly increased */
    padding: 8px 15px;
    display: inline-block;
}

.back-to-login a:hover {
    color: #5e0b15;
    text-decoration: underline;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .users.form {
        padding: 40px 25px;
        margin: 40px auto;
        max-width: 95%; /* Use more screen width */
    }

    .users.form h2,
    .users.form h3 {
        font-size: 3rem; /* Still large on mobile */
    }

    .users.form legend {
        font-size: 1.6rem; /* Still large on mobile */
    }

    .users.form label {
        font-size: 1.4rem; /* Still large on mobile */
    }

    .users.form input[type="email"],
    .users.form input[type="password"] {
        font-size: 1.4rem; /* Still large on mobile */
    }

    .users.form input[type="submit"],
    .users.form button {
        font-size: 1.6rem; /* Still large on mobile */
    }
}

@media screen and (max-width: 480px) {
    .users.form h2,
    .users.form h3 {
        font-size: 2.6rem; /* Still large on smaller mobile */
    }

    .users.form legend {
        font-size: 1.4rem; /* Still large on smaller mobile */
    }

    .users.form p,
    .users.form .password-requirements {
        font-size: 1.3rem; /* Still large on smaller mobile */
    }

    .users.form input[type="email"],
    .users.form input[type="password"] {
        font-size: 1.3rem; /* Still large on smaller mobile */
        padding: 16px; /* Keep fields tall */
    }

    .users.form input[type="submit"],
    .users.form button {
        font-size: 1.5rem; /* Still large on smaller mobile */
    }
}

/* ========== ENHANCED ABOUT PAGE STYLES ========== */

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
    font-family: 'Lora', serif;
    line-height: 1.6;
}

.about-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 8px 8px;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.about-hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4.5rem;
    font-weight: 500;
    font-style: italic;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 2;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 1rem;
}

.about-hero h1 em {
    color: #f5f5f5;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
    font-size: 5rem;
}

.about-section {
    display: flex;
    gap: 3rem;
    padding: 3rem;
    margin: 3rem 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #7b3f00;
}

.about-stephen {
    background-color: #f8f5f2;
}

.about-wines {
    background-color: #f5f7f5;
}

.about-section img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 45%;
    height: auto;
    object-fit: cover;
}

.about-section img:hover {
    transform: scale(1.01);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.about-section div {
    flex: 1;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #5e0b15;
    position: relative;
    padding-bottom: 0.8rem;
}

.about-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #7b3f00;
}

.about-section p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.search-products {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, #f8f5f2, #f5f7f5);
    border-radius: 8px;
    margin: 3rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-products h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #5e0b15;
}

.search-products .button {
    display: inline-block;
    background-color: #7b3f00;
    color: white;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.search-products .button:hover {
    background-color: #5e0b15;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Responsive adjustments - updating the existing styles */
@media screen and (max-width: 768px) {
    .about-hero {
        height: 350px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero h1 em {
        font-size: 3.5rem;
    }

    .about-section {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .about-section img {
        max-width: 100%;
        order: 1;
    }

    .about-section div {
        order: 2;
    }

    .about-section h2 {
        font-size: 2.2rem;
    }

    .about-section p {
        font-size: 1.1rem;
    }

    .search-products {
        padding: 3rem 1.5rem;
    }

    .search-products h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .about-hero {
        height: 250px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
        padding: 0.5rem;
    }

    .about-hero h1 em {
        font-size: 2.8rem;
    }

    .about-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .search-products {
        padding: 2rem 1rem;
    }

    .search-products h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .search-products .button {
        font-size: 1rem;
    }
}

/* ========== ENHANCED FAQ PAGE STYLES WITH LARGER TEXT ========== */

/* FAQ Container */
.faqs-container {
    max-width: 1200px;
    margin: 3rem auto 5rem;
    padding: 0 2rem;
    font-family: 'Lora', serif;
    line-height: 1.8;
    color: #333;
}

/* Main FAQ Title */
.faqs-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem; /* INCREASED */
    text-align: center;
    color: #5e0b15;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.faqs-container h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: #7b3f00;
}

/* Category Title */
.faqs-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem; /* INCREASED */
    color: #7b3f00;
    margin: 3rem 0 2rem;
    padding-left: 1.5rem;
    position: relative;
    border-left: 6px solid #5e0b15;
}

/* FAQ Category Container */
.faq-category {
    margin-bottom: 4rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 1rem;
}

/* Individual FAQ Item */
.faq-item {
    background-color: #fff;
    margin: 1.5rem;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #7b3f00;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Question Styling */
.faq-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; /* INCREASED */
    margin-bottom: 1.5rem;
    color: #5e0b15;
    line-height: 1.4;
}

/* Answer Styling */
.faq-item p {
    font-size: 1.8rem; /* INCREASED */
    line-height: 1.7;
    color: #333;
    margin: 0;
    padding-left: 1rem;
    border-left: 3px solid #f0f0f0;
}

/* Contact Section */
.faq-footer {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(to right, #f8f5f2, #f5f7f5);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.faq-footer p {
    font-size: 2rem; /* INCREASED */
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: #333;
    line-height: 1.7;
}

/* Contact Button */
.faq-contact-button {
    margin-bottom: 3rem;
}

.faq-contact-button .button {
    display: inline-block;
    background-color: #7b3f00;
    color: white;
    font-size: 1.8rem; /* INCREASED */
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    font-weight: 500;
}

.faq-contact-button .button:hover {
    background-color: #5e0b15;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
    color: white;
}

/* Urgent Contact */
.urgent-contact {
    padding: 2rem;
    border-top: 2px solid #e5e5e5;
    margin-top: 2rem;
}

.urgent-contact p {
    font-size: 1.7rem; /* INCREASED */
    margin: 0;
}

.urgent-contact strong {
    color: #5e0b15;
    font-weight: 600;
}

.urgent-contact a {
    color: #7b3f00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.urgent-contact a:hover {
    color: #5e0b15;
    text-decoration: underline;
}

/* Responsive styles - still maintaining larger text on mobile */
@media screen and (max-width: 768px) {
    .faqs-container h2 {
        font-size: 3.8rem; /* Still large on mobile */
    }

    .faqs-container h3 {
        font-size: 2.8rem; /* Still large on mobile */
    }

    .faq-item strong {
        font-size: 2rem; /* Still large on mobile */
    }

    .faq-item p {
        font-size: 1.6rem; /* Still large on mobile */
    }

    .faq-footer p {
        font-size: 1.7rem; /* Still large on mobile */
    }
}

@media screen and (max-width: 480px) {
    .faqs-container h2 {
        font-size: 3.2rem; /* Still large on smallest screens */
    }

    .faqs-container h3 {
        font-size: 2.4rem; /* Still large on smallest screens */
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item strong {
        font-size: 1.8rem; /* Still large on smallest screens */
    }

    .faq-item p {
        font-size: 1.5rem; /* Still large on smallest screens */
    }
}

/* ========== ENHANCED CONTACT FORM STYLES WITH LARGER TEXT ========== */

.contactSubmissions.index {
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 25px;
    font-family: 'Lora', serif;
}

.contactSubmissions h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; /* SIGNIFICANTLY LARGER */
    color: #5e0b15;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 4px solid #ccc;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.contactSubmissions h3::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background-color: #7b3f00;
}

.contactSubmissions p {
    font-size: 1.8rem; /* SIGNIFICANTLY LARGER */
    color: #333;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

.form-container {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-left: 8px solid #7b3f00;
}

.contactSubmissions fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.contactSubmissions .input {
    margin-bottom: 35px;
}

.contactSubmissions label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    font-size: 2rem; /* SIGNIFICANTLY LARGER */
    font-family: 'Lora', serif;
}

.contactSubmissions input[type="text"],
.contactSubmissions input[type="email"] {
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.8rem; /* SIGNIFICANTLY LARGER */
    transition: all 0.3s ease;
    background-color: #fff;
}

.contactSubmissions textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1.8rem; /* SIGNIFICANTLY LARGER */
    min-height: 220px;
    resize: vertical;
    transition: all 0.3s ease;
    background-color: #fff;
}

.contactSubmissions input[type="text"]:focus,
.contactSubmissions input[type="email"]:focus,
.contactSubmissions textarea:focus {
    border-color: #7b3f00;
    outline: none;
    box-shadow: 0 0 12px rgba(123, 63, 0, 0.3);
}

#char-count {
    text-align: right;
    font-size: 1.5rem; /* SIGNIFICANTLY LARGER */
    color: #666;
    margin-top: 8px;
    font-style: italic;
}

.contactSubmissions .checkbox {
    display: flex;
    align-items: flex-start;
    margin: 30px 0;
}

.contactSubmissions .checkbox input {
    margin-right: 15px;
    margin-top: 6px;
    transform: scale(1.5); /* Make checkbox bigger */
}

.contactSubmissions .checkbox label {
    font-weight: normal;
    font-size: 1.6rem; /* SIGNIFICANTLY LARGER */
    line-height: 1.5;
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    transform: scale(1.2); /* Make reCAPTCHA bigger */
    transform-origin: center;
}

.form-actions {
    text-align: center;
    margin-top: 45px;
}

.contactSubmissions .button {
    background-color: #7b3f00;
    color: white;
    border: none;
    border-radius: 40px;
    font-size: 1.8rem; /* SIGNIFICANTLY LARGER */
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Lora', serif;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
}

.contactSubmissions .button:hover {
    background-color: #5e0b15;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* High contrast mode for better visibility */
.contactSubmissions input::placeholder,
.contactSubmissions textarea::placeholder {
    color: #777;
    font-size: 1.6rem;
}

/* Add some visual flair */
.form-container::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: rgba(123, 63, 0, 0.1);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive adjustments - still maintaining larger text sizes */
@media screen and (max-width: 768px) {
    .form-container {
        padding: 40px 25px;
        border-left-width: 6px;
    }

    .contactSubmissions h3 {
        font-size: 3.2rem; /* Still very large on mobile */
    }

    .contactSubmissions p {
        font-size: 1.6rem; /* Still large on mobile */
    }

    .contactSubmissions label {
        font-size: 1.8rem; /* Still large on mobile */
    }

    .contactSubmissions input[type="text"],
    .contactSubmissions input[type="email"],
    .contactSubmissions textarea {
        font-size: 1.6rem; /* Still large on mobile */
        padding: 16px;
    }

    .contactSubmissions .button {
        font-size: 1.6rem; /* Still large on mobile */
    }
}

@media screen and (max-width: 480px) {
    .contactSubmissions h3 {
        font-size: 2.8rem; /* Still very large on small mobile */
    }

    .contactSubmissions p {
        font-size: 1.5rem; /* Still large on small mobile */
    }

    .contactSubmissions .button {
        width: 100%;
    }

    #char-count {
        font-size: 1.3rem; /* Still large on small mobile */
    }
}
