* {
    box-sizing: border-box;
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #bdbfba;
}

body {
    padding-top: 5rem;
}

main {
    flex: 1;
}


.disappear {
    display: none;
}

.grow {
    flex-grow: 1;
}

/* CSS for the upload progress bar */
progress.upload-progress {
  width: 100%;
  height: 20px;
  border: none;
  border-radius: 10px;
  background-color: #f3f3f3;
  overflow: hidden;
}

/* For WebKit browsers (Chrome, Safari) */
progress.upload-progress::-webkit-progress-bar {
  background-color: #f3f3f3;
}

progress.upload-progress::-webkit-progress-value {
  background-color: #fc6401;
  border-radius: 10px;
}

/* For Firefox */
progress.upload-progress::-moz-progress-bar {
  background-color: #fc6401;
  border-radius: 10px;
}

/* Custom Modal */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 40ch;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.modal button:hover {
    background: #2980b9;
}

/* Show Modal */
.modal.show {
    visibility: visible;
    opacity: 1;
}

/* Upload Page */
.upload-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background-color: #16262E;
    padding: 2rem;
}

.upload-page h1 {
    color: #ced0cd;
    margin-left: 1rem;
}

/* Main upload section */
.upload-main {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
    padding: 1rem;
}

/* Upload window (form container) */
.upload-main-window {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background-color: #2E4756;
    border-radius: 1rem;
    color: white;
    border: 1px solid #bdbfba;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Upload info section */
.upload-main-info {
    flex: 0;
}

.upload-main-info p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: white;
}

.upload-main-info video {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Video upload form */
.video-upload-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #bdbfba;
    margin-bottom: 1rem;
}

.video-upload-form h4 {
    width: 100%;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Input & Select Fields */
.video-upload-form input,
.video-upload-form select {
    padding: 0.5rem;
    border-radius: 5px;
    border: 1px solid #bdbfba;
    background: #f0f0f0;
    color: #333;
    font-size: 1rem;
}

/* Ensure dropdowns are smaller */
.video-upload-form select {
    min-width: 80px;
}

/* File input styling */
.videoFile {
    flex: 1;
}

/* Buttons */
button {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background: #2980b9;
}

/* Remove button */
.removeBtn {
    background: #e74c3c;
}

.removeBtn:hover {
    background: #c0392b;
}

/* Submit & Add Video Buttons */
#addVideoBtn,
#submitAllBtn {
    width: 100%;
    margin-top: 1rem;
}

/* Inline Alert */
.alert {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.alert.hidden {
    display: none;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: flex;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: flex;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    display: flex;
}

/* Close Button */
.close-alert {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: inherit;
    cursor: pointer;
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .upload-page {
        gap: 2rem;
        padding: 1rem;
    }

    .upload-main {
        padding: 0;
    }

    .upload-main-window {
        width: 100%;
        padding: .75rem;
    }

    .videoFile {
        flex: 1;
        max-width: 100%;
    }

}
/* Upload Information Section */
.upload-main-info {
    background-color: #2E4756; /* Matches your upload form */
    padding: 1.5rem;
    border-radius: 10px;
    color: white;
    flex-basis: 600px;
    border: 1px solid #bdbfba;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.upload-main-info h2 {
    color: #a5c5da; /* Light blue for contrast */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

/* Paragraph Styling */
.upload-main-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Bullet Point List */
.upload-main-info ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.upload-main-info li {
    margin-bottom: 0.5rem;
}

/* Horizontal Divider */
.upload-main-info hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1.5rem 0;
}

/* Mouth Width Section */
#mouthInfoContainer {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #bdbfba;
    text-align: center;
    margin-top: 1rem;
}

/* Mouth Width Image */
#mouthInfoImg {
    width: 150px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Strong Tags (Emphasized Text) */
.upload-main-info strong {
    color: #a5c5da; /* Light blue */
}

/* Responsive Design */
@media (max-width: 768px) {
    .upload-main-info {
        max-width: 95%;
        padding: 1rem;
    }
}



/*Upload Page end*/


/*order display start*/


/* Order Display Container */
.order-page-display {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Main Image */
#order-page-display-main {
    width: 100%;
    transition: transform 0.3s ease, width 0.3s ease;
    border-radius: 1rem;
    height: 33.5rem;
}

/* Thumbnail Images */
.order-page-display-sub {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.order-page-display-sub img {
    max-width: 80px; /* Adjust thumbnail size */
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease, opacity 0.4s ease;
}

.order-page-display-sub img:hover {
    transform: scale(1.1);
}


/*order display end*/



/* Ensure the container uses flexbox */
.flex-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    gap: 15px; /* Add spacing between items */
    width: 100%;
    max-width: 445px; /* Adjust form width */
}
.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .8rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.terms-container input[type="checkbox"] {
    width: 1.1rem;
    height: 1.1rem;
}

.terms-container a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    font-size: .9rem;
}

.terms-container a:hover {
    text-decoration: underline;
}

/* Button Styling */
#checkout-button {
    background-color: white;
    color: #16262E;
    padding: 12px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    transition: background 0.3s;
}

#checkout-button.enabled {
    background-color: #fc6401;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#checkout-button.enabled:hover {
    background-color: #fe8332;
}


/* Style labels */
.flex-container label {
    font-weight: bold;
    color: #333;
}

form label {
    font-weight: bold;
    color: #333;
}

/* Style input fields */
.flex-container input[type="number"],
.flex-container input[type="email"] {
    color: black;
    background-color: white;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.flex-container input:focus {
    border-color: #fc6401;
    outline: none;
}

/* Style the checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
}

.custom-checkbox input {
    display: none; /* Hide the default checkbox */
}

/* Style the custom checkbox appearance */
.custom-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #fc6401;
    border-radius: 4px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

/* Show checkmark when checked */
.custom-checkbox input:checked + .checkmark::after {
    content: "✔";
    font-size: 16px;
    color: white;
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fc6401;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

/* Style dropdown */
.flex-container select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: white;
    color: black;
    cursor: pointer;
    transition: border-color 0.3s;
}

/* Hover & focus effects */
.flex-container select:hover,
.flex-container select:focus {
    border-color: #fc6401;
    outline: none;
}

/* Style the submit button */
.flex-container button {
    background-color: #fc6401;
    color: white;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.flex-container button:hover {
    background-color: #fe8332;
}







/* Hide the default file input */
#video {
    display: none;
}

/* Style the custom upload box */
.file-upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 18rem;
    height: 9rem;
    border: 2px dashed #007BFF;
    background-color: #f9f9f9;
    cursor: pointer;
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

/* Change color on hover */
.file-upload-box:hover {
    background-color: #e0f0ff;
}

/* Style the image */
.file-upload-box img {
    width: 7rem;
}

/* Style the text */
#fileText {
    font-size: 16px;
    color: #fc6401;
    margin-top: -.5rem;
    padding-bottom: .5rem;
}

#orderForm p {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

/*
.order-page-size-options input[type="checkbox"] {
    display: none;
}
*/
/* Style the labels as buttons */
.size-button {
    padding: .5rem 1rem;
    border: 2px solid #fc6401;
    color: #fc6401;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.15s;
}

/* Change appearance when selected */
.order-page-size-options input[type="checkbox"]:checked + .size-button {
    background-color: #fc6401;
    color: white;
    font-weight: bold;
}

.order-page-size-options {
    display: flex;
    flex-direction: column;
    max-width: 60ch;
    gap: 2rem;
    margin-top: .5rem;
    margin-bottom: .5rem;

}

#totalPrice,
form p strong {
    font-size: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.order-page {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #ced0cd;
}

.order-page-display {
    width: 75ch;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.order-page-display img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.order-page-content {
    width: 75ch;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: black;
}

.order-page-content-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-page-content h1 {
    margin-bottom: -2rem;
}

.order-page-content-info h2 {
    font-size: 1.5rem;
    color: #16262E;
}

.order-page-content-info p {
    font-size: 1.1rem;
    line-height: 1.6rem;
}
.order-page-content-info ul li {
    font-size: 1.1rem;

}


.hidden-info {
    display: none; /* Hidden by default */
}

.hidden-info-the-second {
    font-size: .875rem;
    color: #666;
    margin-top: -.75rem;
}

.hidden-info-the-second p {
    font-size: .875rem;
}

.hidden-info-the-second p a {
    font-size: .875rem;
    font-weight: bold;
    color: #007BFF;
}

.hidden-info-the-second p a:hover {
    text-decoration: underline;
}

.hidden-info-the-second strong {
    font-size: .875rem;
}

.info-link {
    font-size: .875rem;
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
    margin-left: 5px;
    font-weight: bold;
}

.info-link:hover {
    text-decoration: underline;
}




.mini-section.left-align {
    align-self: flex-start;
}
.sub-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 3rem;
    margin-top: -5rem;
    padding-top: 5rem;
    background: rgb(189,191,186);
    background: linear-gradient(306deg, rgba(189,191,186,1) 0%, rgba(46,71,86,1) 49%, rgba(22,38,46,1) 69%);
    background: rgb(189,191,186);
    background: linear-gradient(354deg, rgba(189,191,186,1) 0%, rgba(46,71,86,1) 34%, rgba(22,38,46,1) 72%);
}

.sub-hero-header {
    font-size: 2.25rem;
    font-weight: 900;
    color: #e6dac3;
    align-self: center;
    padding-top: 4rem;
}
.sub-hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    width: 100vw;
    padding: 2rem;
}

.sub-hero-list {
    color: #bdbfba;
    max-width: 60vw;
}

.sub-hero-list li {
    color: #ced0cd;
    font-size: 1.2rem;
    margin-left: -1rem;
    padding-bottom: .3rem;

}


.sub-hero-content div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.bigger-mini-section {
    font-size: 1.4rem;
    text-decoration: underline;
}

.bigger-lists ul li{
    font-size: 1.1rem;
    margin-bottom: .2rem;
}


video {
    max-width: 20vw;
    min-width: 400px;
    height: auto;
    border-radius: 2rem;
}

.video-guide-examples {
    display: flex;
    flex-wrap: wrap;
}
.video-guide-examples img {
    max-width: 200px;
    margin: 1rem;
}

.policys-content h2 {
    font-size: 2rem;
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: #16262E;
}


.policys-content h4 {
    padding-top: .5rem;

}

.policys-content ul li a {
    text-decoration: underline;
    font-size: 1rem;
}

.sub-hero h3.mini-section {
    font-size: 2rem;
    font-weight: bolder;
    color: #e6dac3;
    padding-bottom: .4rem;
}

/* Fullscreen Pop-Up (Initially Hidden) */
#popup {
    position: fixed;
    top: 0;
    left: -100%; /* Start fully off-screen */
    width: 100%;
    height: 100vh;
    background: rgba(22, 38, 46);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: left 0.2s ease, opacity 0.2s ease;
}

/* Slide in when active */
#popup.show {
    left: 0; /* Moves fully into view */
    opacity: 1;
}

/* Pop-Up Content (Centered Fullscreen) */
.popup-content {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; /* Align content properly */
    gap: 3rem;
    overflow-y: auto; /* Allow scrolling */
    margin-left: 1.5rem;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: .5rem;
}

.popup-header h1 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e6dac3;
    margin-top: -.4rem;
    margin-left: 3.5rem;
    margin-right: 2.25rem;
}

.popup-header a {
    margin-left: -.5rem;
}

.popup-content .header-links.popup-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 2rem;;
}

.popup-content .followUs {
    margin-top: -2rem;
}

.popup-links h4 {
    color: #bdbfba;
}

.popup-links p {
    color: #e6dac3;
}



/* Close Button */
.close-btn {
    position: absolute;
    top: -.6rem;
    left: .6rem;
    font-size: 4rem;
    background: none;
    border: none;
    color: #bdbfba;
    cursor: pointer;
}



.policys {
    background-color: #bdbfba;
    color: #2E4756;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


ul, ol {
    padding-left: 2rem;
}

.policys-content {
    width: 90vw;
    padding: 2rem 0;
}

.policys div h2 {
    margin-top: -1rem;
    margin-bottom: -2rem;
}
.policys-content li {
    font-size: 1rem;
}

.policys-content h3 {
    margin-top: 1rem;
    color: #16262E;
    font-size: 1.2rem;
}

.bottom-nav {
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

a {
    all: unset; /* Resets all styles applied to the <a> element */
    cursor: pointer; /* Optional: makes it look like a clickable element */
}

.emphasis {
    font-weight: bold;
    font-size: 1.3rem;
}

.btn {

    transition: .3s;
    color: #F9FAF8;
    font-weight: bold;
    background-color: #fc6401;
    border-radius: .5rem;
    padding: .5rem 1rem;
    border: none;
    margin-left: 1rem;
}


.btn:hover {
    color: #fc6401;
    background-color: #F9FAF8;
    padding: .6rem 1.1rem;
}

.mobile-header.btn {
    margin-left: -.4rem;
}

.hero-text span {
    height: 4rem;
    display: flex;
    align-items: center;
}

.section-header {
    font-size: 2.25rem;
    font-weight: 900;
    color: #16262E;
    align-self: flex-start;
    margin-top: 1rem;
}

.section-header a {
    font-size: 2.25rem;
    font-weight: 900;
    color: #16262E;
}

.header-menu {
    display: none;
}

.header {
    background-color: rgba(22, 38, 46, .95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 1.5rem 0rem 1.5rem;
    flex-wrap: wrap;
    width: 100vw;
    position: fixed;
    top: 0;
    z-index: 1000; /* Ensures it stays above content */

}
.header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-name {
    font-size: 2rem;
    font-weight: 900;
    color: #e6dac3;
}

.header-logo a img {
    height: 4rem;
    width: auto;
}

.header-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    height: 4rem;
    color: #bdbfba;
    font-weight: 500;
}

.header-links img {
    height: 2rem;
    width: auto;
    margin-right: .8rem;
}


.header-links-desktop:hover {
    text-decoration: underline;
}

.gradient {
    background: rgb(189,191,186);
    background: linear-gradient(0deg, rgba(189,191,186,1) 0%, rgba(46,71,86,1) 55%, rgba(22,38,46,1) 96%);
}


.hero {
/*    background-color: #2E4756; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    padding-bottom: 1rem;
    margin-top: -5rem;
    padding-top: 8rem;
}

.hero-text {
    max-width: 100vmin;
    min-width: 30vmin;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex: 1;
    color: #F9FAF8;
    color: #e6dac3;
}

.hero-text h1 {
    font-size: 3.5rem;
    padding: 0 1rem;
}

.hero-text p {
    font-size: 1.25rem;
    padding: 1rem;
}

.hero-images {
    max-width: 70vmin;
    display: flex;
    margin: 1rem;
    flex: 2;
}

.hero-images img {
    max-width: 35vmin;
    padding: 0 .5rem;
    border-radius: 2rem;
}

.how-it-works {
   /* background-color: #bdbfba; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}

.how-it-works div .section-header{
    color: #e6dac3;
}

.how-it-works-content {
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.how-it-works-content div {
    display: flex;
    flex-flow: column wrap;
    align-items: center;

}

.how-it-works-content div h3 {
    font-size: 1.5rem;
}

.how-it-works-content div img {
    max-width: 30vmin;
    padding-top: 2rem;
}

.how-it-works-content div p {
    text-align: center;
    max-width: 350px;
    font-size: 1.2rem;
    padding: 0 2rem;
}

.size-options {
    background-color: #c8cbc4;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 2rem;
}

.size-options div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
}

.size-options-cards div:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.size-options-cards {
    display: flex;
    justify-content: center;
}

.size-options-cards-small  {
    width: 85vmin;
    height: 42.5vmin;
    background-image: url('images/home/bust-michael-books.webp');
    background-size: cover;
    background-position: center;
}

.size-options-cards-medium {
    width: 85vmin;
    height: 42.5vmin;
    background-image: url('images/home/bust-marty-books.webp');
    background-size: cover;
    background-position: center;
}
.size-options div div a {
    color: white;
    width: 80vmin;
    height: 40vmin;
    font-size: 2rem;
    font-weight: bolder;
    padding: 1rem;
}

.quote {
    background-color: #bdbfba;
    color: #16262E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.quote p{
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
}


.faq {
    background-color: #c8cbc4;
    color: #2E4756;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;

}

.faq-content h3 {
    color: #16262E;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: -.5rem;
}

.faq-content details {
    width: 60vw;
    border-bottom: 1px solid black;
    padding: .5rem;
}


.faq-content details summary{
    font-size: 1.5rem;
    font-weight: bold;
    padding: .5rem;
    margin-left: -.5rem;
    transition: font-size 0.25s ease-in-out;
}

.faq-content details summary:hover{
    font-size: 1.55rem;
}
.faq-content details p {
    color: #16262E;
    font-size: 1.3rem;
    max-width: 75ch;
}

.faq-content details a {
    color: #16262E;
    font-size: 1.3rem;
}
.faq-content details li {
    color: #16262E;
    font-size: 1.3rem;
}

.faq-content details li strong {
    font-size: 1.3rem;
}

.faq-content details p strong {
    font-size: 1.3rem;
}

.faq-content details p {
    font-size: 1.3rem;
    padding-left: 1rem;
}


.faq-content details ul{
    font-size: 1.3rem;
    margin-left: 1rem;
}

.faq-content details ol{
    font-size: 1.3rem;
    margin-left: 1rem;
}

summary {
    display: flex;
    justify-content: space-between; /* Pushes text left, arrow right */
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* Hide default triangle */
    position: relative;
    padding: 10px;
}

/* Custom arrow (⯆ down, ⯅ up) */
summary::after {
    content: "⯆"; /* Unicode down arrow */
    font-size: 20px;
    margin-left: auto; /* Push to the right */
    transition: transform 0.3s ease;
}

/* Rotate arrow when details is open */
details[open] summary::after {
    transform: rotate(180deg); /* Rotates arrow to point up */
}


.link {
    text-decoration: underline;
    padding: 1rem;
}

p .link {
    padding: 0;
}

details p .link {
    padding: 0;
    text-decoration: underline;
}

details li .link {
    padding: 0;
    text-decoration: underline;
}

/* Call to Action Container */
.callToAction-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #ced0cd;
}

/* Call to Action Box */
.callToAction {
    text-align: center;
    max-width: 55vw;
    padding: 20px;
    background-color: #fb6725;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Sign-Up Form */
.callToAction-form {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 90%;
    gap: 10px;
    margin-top: 10px;
}

/* Input Fields */
.callToAction-form input {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    max-width: 400px;
    background-color: #F9FAF8;
    color: black;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s;
}

.callToAction-text {
    display: flex;
    flex-flow: column wrap;
    gap: 1rem;
}

.callToAction p {
    color: #F9FAF8;
}

.callToAction-text-heading {
    color: #F9FAF8;
    font-weight: bold;
    font-size: 1.2rem;
}


/* Submit Button */
.callToAction-form .btn {
    font-size: 1.15rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
    color: #F9FAF8;
    background-color: #fb6725;
    border: 2px solid #F9FAF8;
    padding: .5rem 1.5rem;
    border-radius: 8px;
    margin-left: 0;
}

.callToAction-form .btn:hover {
    background-color: #F9FAF8;
    color: #fb6725;
}

.footer {
    background-color: #2E4756;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-top {
    background-color: #2E4756;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding: 1rem 1.5rem;
}

.footer-top div h4 {
    font-size: 1.25rem;
}

.pad-top {
    padding-top: 2.5rem;
}

.footer-top div p,a {
    font-size: 1.1rem;
}

.footer-top-about {
    display: flex;
    flex-direction: column;
    max-width: 20rem;
}

.footer-top-about img {
    width: 15vmin;
}

.contactUs p{
    max-width: 20rem;
}

.followUs img {
    height: 3rem;
    padding: .5rem .5rem;
}

.footer-termsAndPolicys {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.footer-bottom {
    background-color: #16262E;
    color: #e6dac3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    padding: .5rem 1rem;
}

.footer-bottom img {
    max-width: 3vw;
    min-width: 2.5rem;
}

@media screen and (max-width: 1390px) and (min-width: 1070px) {
    .order-page-display {
        width: 50ch;
    }

    /* Main Image */
    #order-page-display-main {
        width: 100%;
        height: 20rem;
    }

    .order-page-display-sub img {
        max-width: 60px; /* Adjust thumbnail size */
        height: auto;
    }

    .order-page-content {
        width: 65ch;
    }
}

@media screen and (max-width: 850px) {
    .header-links {
        gap: .9rem;
    }

    .header-links-desktop {
        font-size: 1rem;
    }


    .mobile-header.btn {
        margin-left: 0rem;
    }

    .gradient {
        background: rgb(189,191,186);
        background: linear-gradient(0deg, rgba(189,191,186,1) 0%, rgba(46,71,86,1) 55%, rgba(22,38,46,1) 96%);
    }

    .size-options-cards-small  {
        background-image: url('images/home/bust-michael-books-small.webp');
    }


    .hero {
        padding-top: 7rem;
    }
    .hero-text h1 {
        padding-top: 2rem;
    }
    .pad-top.ipad {
        padding-top: 7.5rem;
    }
    video {
        max-width: 85vmin;
    }

    .sub-hero-header {
        padding-top: 2.5rem;
    }
    .sub-hero-list {
        max-width: 90vw;
    }

.faq-content details {
    width: 80vw;
}

summary {
    font-size: 1rem;
    padding: 5px;
    gap: 1rem;
}

.faq-content details p {
    font-size: 1.3rem;
    padding-left: 0;
}


.faq-content details ul{
    font-size: 1.3rem;
    padding-left: 0;
}

.faq-content details ol{
    font-size: 1.3rem;
    padding-left: 0;
}


.order-page-content h1 {
    margin-top: -3rem;
}

    .faq-content details summary{
        font-size: 1.4rem;
        text-align: center;
    }
    .faq-content details summary:hover {
	font-size: 1.4rem;
    }

    .faq-content details p,
    .faq-content details ul li,
    .faq-content details ul li a,
    .faq-content details ol li,
    .faq-content details ol,
    .faq-content details ol li,
    .faq-content details ol li strong,
    .faq-content details ol li em,
    .faq-content details p span,
    .faq-content detalis p a,
    .faq-content details p a.link,
    .faq-content details ul li strong,
    .faq-content details ul li span.emphasis,
    .faq-content details p strong {
        font-size: 1.2rem;
    }
    
    .faq-content h3 {
	text-align: center;
	margin-bottom: .25rem;
	text-decoration: underline;
    }

}

@media screen and (max-width: 750px) {
    .section-header {
        font-size: 1.75rem;
    }

    .section-header a {
        font-size: 1.75rem;
    }

    .header-logo-name {
        display: none;
    }

    .header-menu a img {
        margin-top: .2rem;
        height: 2rem;
        width: auto;
    }

    .header-links-desktop {
        display: none;
    }

    .header-menu {
        display: block;
    }
    .header-menu-item {
        background-image: url('images/home/menu.png');
    }

    .btn {
        margin-left: 0;
    }

    .btn.mobile-header {
        margin-left: -.7rem;
        padding: .5rem .4rem;
        font-size: .95rem;
    }
    .hero-text span {
        justify-content: center;
    }
    .hero-images {
        max-width: 100vmin;
    }
    .hero-images img {
        max-width: 50vmin;
    }
    .hero-text {
        justify-content: center;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-top: -1rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }
    .hero-images img {
        padding: 0 .25rem;
    }

    .how-it-works-content div img {
        padding-top: 0;
        max-width: 50vmin;
    }
    .how-it-works-bottom {
        padding-bottom: 1.5rem;
    }

    .size-options-cards-small, .size-options-cards-medium  {
        width: 90vmin;
        height: 90vmin;
    }

    .size-options div div a {
        width: 85vmin;
        height: 85vmin;
    }

    .faq-content details {
        width: 85vw;
    }

    .faq-content details summary{
        font-size: 1.2rem;
        text-align: center;
    }

    .faq-content details summary:hover {
	    font-size:1.2rem;
    }

    .faq-content details p,
    .faq-content details ul li,
    .faq-content details ul li a,
    .faq-content details ol li,
    .faq-content details ol,
    .faq-content details ol li,
    .faq-content details ol li strong,
    .faq-content details ol li em,
    .faq-content details p span,
    .faq-content detalis p a,
    .faq-content details p a.link,
    .faq-content details ul li strong,
    .faq-content details ul li span.emphasis,
    .faq-content details p strong {
        font-size: 1.1rem;
    }

    .faq-content h3 {
        font-size: 1.5rem;
	text-align: center;
	margin-bottom: .25rem;
    }

    .callToAction-text {
        align-self: center;
        text-align: center;
    }

    .footer-top-about img {
        width: 25vmin;
    }

    .pad-top {
        padding-top: 2rem;
    }

    .footer-top div .pad-top {
        padding-top: 0;
    }

    .pad-top.ipad {
        padding-top: 0;
    }

    .order-page-display-sub img {
        max-width: 60px; /* Adjust thumbnail size */
    }

    /* Main Image */
    #order-page-display-main {
        height: 20rem;
    }

    .callToAction {
        max-width: 100vw;
    }

video {
    max-width: 90vw;
    min-width: 0;

}

.quote p{
    font-size: 1.6rem;
}
}
