:root {
    --mesa-navy: #1e3a5f;
    --mesa-dark-navy: #162d47;
    --mesa-blue: #2c5aa0;
    --mesa-gold: #d4a017;
    --mesa-orange: #cc7a00;
    --mesa-light-gray: #f5f5f5;
    --mesa-medium-gray: #e8e8e8;
}

/*  Hero Section */
/* id="section-Hut21ZmuFD-style" */
[data-colorpreset="cp-dark-background"],
.dark-background {
    --background-color: #1e1d1d;
    /* --background-color: #060606; */
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.hero-2 {
    padding: 0;
}

.hero-2 .carousel {
    width: 100%;
    min-height: 50vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

.hero-2 img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-2 .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-2 .carousel-item:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-2 .carousel-item::before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 30%
    );
    position: absolute;
    inset: 0;
}

.hero-2 .carousel-container {
    position: absolute;
    inset: 90px 64px 64px 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero-2 h2 {
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 700;
    animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
    .hero-2 h2 {
        font-size: 30px;
    }
}

.hero-2 p {
    animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
    .hero-2 h2,
    .hero-2 p {
        max-width: 60%;
    }
}

.hero-2 .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    animation: fadeInUp 1s both 0.4s;
}

.hero-2 .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero-2 .carousel-control-prev,
.hero-2 .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
}

.hero-2 .carousel-control-prev:focus,
.hero-2 .carousel-control-next:focus {
    opacity: 0.5;
}

.hero-2 .carousel-control-prev:hover,
.hero-2 .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {
    .hero-2 .carousel-control-prev,
    .hero-2 .carousel-control-next {
        width: 5%;
    }
}

.hero-2 .carousel-control-next-icon,
.hero-2 .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
}

.hero-2 .carousel-indicators {
    list-style: none;
}

.hero-2 .carousel-indicators li {
    cursor: pointer;
}

/* .carousel-indicators {
            position: absolute;
            right: 0;
            bottom: 50px;
            left: 0;
            z-index: 2;
            display: flex;
            justify-content: center;
            padding: 0;
            margin-right: 15%;
            margin-bottom: 1rem;
            margin-left: 15%;
        } */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
/* End Hero Section */

/* Information Dashboard Section */
.info-dashboard-section {
    background-color: white;
    padding: 60px 0;
    border-top: 1px solid var(--mesa-medium-gray);
}

.info-panel, .info-panel-middle {
    background-color: var(--mesa-light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-panel-middle {
    box-shadow: none;
}

.single-panel {
    background-color: var(--mesa-light-gray);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.info-panel:hover,
.info-panel:focus-within,
.single-panel:hover,
.single-panel:focus-within {
    border-color: var(--mesa-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.panel-title {
    background-color: white;
    color: var(--mesa-navy);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 15px 20px;
    margin: 0;
    border-bottom: 2px solid var(--mesa-navy);
    text-decoration: underline;
    text-decoration-color: var(--mesa-navy);
    text-underline-offset: 4px;
}

.panel-content {
    padding: 20px;
    color: #333;
}

.address-box {
    background-color: white;
    padding: 12px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.contact-info {
    /* margin-bottom: 20px; */
    font-size: 0.9rem;
}

.departments-list {
    margin-bottom: 20px;
}

.departments-list ol {
    margin: 0;
    padding-left: 20px;
}

.departments-list li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.hours-section,
.court-hours {
    margin-bottom: 20px;
}

.hours-section h4,
.court-hours h4 {
    color: var(--mesa-navy);
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hours-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-section li {
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.court-hours p {
    font-size: 0.85rem;
    margin: 0;
}

.panel-button {
    background-color: #9db4c4;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
}

.panel-button:hover,
.panel-button:focus {
    background-color: var(--mesa-navy);
    outline: 2px solid var(--mesa-gold);
    color: #ffffff;
    text-decoration: none;
}

.panel-button.primary {
    background-color: var(--mesa-blue);
}

.panel-button.primary:hover,
.panel-button.primary:focus {
    background-color: var(--mesa-navy);
}

.service-links {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.service-links li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.service-links em {
    font-style: italic;
    color: #666;
}

.panel-content h4 {
    color: var(--mesa-navy);
    font-size: 0.95rem;
    margin: 20px 0 10px 0;
    /* text-align: center; */
    font-weight: 600;
}

.county-links {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.county-links h4 {
    font-size: 0.85rem;
    color: var(--mesa-navy);
    margin-bottom: 10px;
}

.county-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.county-links li {
    margin-bottom: 5px;
    font-size: 0.8rem;
    color: #666;
}

.announcements-list,
.meetings-list,
.updates-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.announcements-list li,
.meetings-list li,
.updates-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
    padding-bottom: 8px;
    border-bottom: 1px solid #a0a0a0;
}

.announcements-list li:last-child,
.meetings-list li:last-child,
.updates-list li:last-child {
    border-bottom: none;
}

.announcements-list li div:first-child {
    width: 80px;
    display: inline-block;
    vertical-align: top;
}

.announcements-list li div:last-child {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 90px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .info-dashboard-section {
        padding: 40px 0;
    }

    .panel-content {
        padding: 15px;
    }

    .panel-title {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

@media (max-width: 576px) {
    .panel-content {
        padding: 12px;
    }

    .panel-title {
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .panel-button {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* <style id="section-UadtiNRwqU-style"> */
.call-to-action-2 {
    padding-top: 60px;
    --background-color: var(--contrast-color);
    padding-bottom: 60px;
}

.call-to-action-2 .cta-box {
    position: relative;
    padding: 80px 30px;
    border-radius: 20px;
    overflow: hidden;
}

.call-to-action-2 .cta-box .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.call-to-action-2 .cta-box .background-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        color-mix(in srgb, var(--surface-color), transparent 5%),
        color-mix(in srgb, var(--surface-color), transparent 10%)
    );
    opacity: 0.95;
}

.call-to-action-2 .cta-box .background-overlay .background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease-in-out;
}

.call-to-action-2 .cta-box:hover .background-image {
    transform: scale(1.1);
}

.call-to-action-2 .cta-box .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.call-to-action-2 .cta-box .content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.call-to-action-2 .cta-box .content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.call-to-action-2 .cta-box .content .cta-buttons .btn-cta:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .call-to-action-2 .cta-box {
        padding: 60px 20px;
    }

    .call-to-action-2 .cta-box .content h2 {
        font-size: 2rem;
    }

    .call-to-action-2 .cta-box .content p {
        font-size: 1rem;
    }

    .call-to-action-2 .cta-box .content .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
/* </style> */

/* <!-- news --> */
/* <style id="section-0hwHEDkbKj-style"> */
.events .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    margin-bottom: 30px;
}

.events .nav-tabs li {
    display: inline-block;
    margin-bottom: 0;
}

.events .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    padding: 10px 100px;
}

@media (max-width: 991px) {
    .events .nav-tabs a {
        padding: 8px 60px;
    }
}

@media (max-width: 767px) {
    .events .nav-tabs a {
        padding: 8px 50px;
    }
}

@media (max-width: 480px) {
    .events .nav-tabs a {
        padding: 8px 30px;
    }
}

.events .nav-tabs a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.events .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
    .events .sub-heading {
        width: 75%;
    }
}

.events .tab-pane {
    transition: ease-in-out 0.2s;
}

.events .schedule-item {
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color ease-in-out 0.3s;
}

.events .schedule-item time {
    padding-bottom: 5px;
    display: inline-block;
    font-size: 0.8rem;
}

.events .schedule-item .speaker {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0 10px 10px 0;
}

.events .schedule-item .speaker img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
    transition: all ease-in-out 0.3s;
}

.events .schedule-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.events .schedule-item h4 span {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: normal;
    font-size: 16px;
}

.events .schedule-item p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}
/* </style> */

/* <style id="section-HNpUvOtLzD-style"> */
.events-3 .nav-tabs {
    text-align: center;
    margin: auto;
    display: block;
    border-bottom: 0;
    margin-bottom: 30px;
}

.events-3 .nav-tabs li {
    display: inline-block;
    margin-bottom: 0;
}

.events-3 .nav-tabs a {
    border: none;
    border-radius: 50px;
    font-weight: 600;
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--default-color);
    padding: 10px 100px;
}

@media (max-width: 991px) {
    .events-3 .nav-tabs a {
        padding: 8px 60px;
    }
}

@media (max-width: 767px) {
    .events-3 .nav-tabs a {
        padding: 8px 50px;
    }
}

@media (max-width: 480px) {
    .events-3 .nav-tabs a {
        padding: 8px 30px;
    }
}

.events-3 .nav-tabs a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.events-3 .sub-heading {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    margin: 0 auto 30px auto;
}

@media (min-width: 991px) {
    .events-3 .sub-heading {
        width: 75%;
    }
}

.events-3 .tab-pane {
    transition: ease-in-out 0.2s;
}

.events-3 .schedule-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: background-color ease-in-out 0.3s;
}

.events-3 .schedule-item time {
    padding-bottom: 5px;
    display: inline-block;
}

.events-3 .schedule-item .speaker {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin: 0 10px 10px 0;
}

.events-3 .schedule-item .speaker img {
    height: 100%;
    transform: translateX(-50%);
    margin-left: 50%;
    transition: all ease-in-out 0.3s;
}

.events-3 .schedule-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.events-3 .schedule-item h4 span {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: normal;
    font-size: 16px;
}

.events-3 .schedule-item p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}
/* </style> */

/* <style id="section-CmFWr2pxS0-style"> */
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

.privacy .privacy-header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.privacy .privacy-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
    margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 30px 0 20px;
    font-weight: 500;
}

.privacy .privacy-content .content-section p {
    margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.privacy .privacy-contact {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-contact p {
    margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
    margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
    color: var(--heading-color);
    font-weight: 600;
}

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }

    .privacy .privacy-header {
        text-align: left;
        border-bottom: 1pt solid #000;
        padding-bottom: 20pt;
        margin-bottom: 30pt;
    }

    .privacy h1 {
        font-size: 24pt;
    }

    .privacy h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }

    .privacy h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }

    .privacy p,
    .privacy ul {
        page-break-inside: avoid;
    }

    .privacy .contact-details {
        border: 1pt solid #000;
        padding: 15pt;
    }
}

@media (max-width: 767px) {
    .privacy .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .privacy .privacy-header .header-content h1 {
        font-size: 2.2rem;
    }

    .privacy .privacy-header .header-content .intro-text {
        font-size: 1.1rem;
    }

    .privacy .privacy-content .content-section {
        margin-bottom: 40px;
    }

    .privacy .privacy-content .content-section h2 {
        font-size: 1.6rem;
    }

    .privacy .privacy-content .content-section h3 {
        font-size: 1.3rem;
    }
}
/* </style> */

/* <style id="section-cqDbcPmpzr-style"> */
.related-books {
    padding: 80px 0;
    overflow: hidden;
}

.related-books .related-book-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.related-books .related-book-card .book-image {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 20px;
}

.related-books .related-book-card .book-image img {
    width: 60%;
    transition: transform 0.5s ease;
}

.related-books .related-book-card .book-image .book-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 20px;
}

.related-books .related-book-card .book-info {
    padding: 25px;
}

.related-books .related-book-card .book-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.related-books .related-book-card .book-info .book-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.related-books .related-book-card .book-info .book-meta span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: flex;
    align-items: center;
}

.related-books .related-book-card .book-info .book-meta span i {
    color: var(--accent-color);
    margin-right: 5px;
}

.related-books .related-book-card .book-info .book-meta span:last-child i {
    color: #ffd700;
}

.related-books .related-book-card .book-info p {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.related-books .related-book-card .book-info .book-actions {
    display: flex;
    gap: 10px;
}

.related-books .related-book-card .book-info .book-actions .btn-details {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: grid;
    place-items: center;
}

.related-books .related-book-card .book-info .book-actions .btn-details:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.related-books .related-book-card .book-info .book-actions .btn-purchase {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: grid;
    place-items: center;
}

.related-books .related-book-card .book-info .book-actions .btn-purchase:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    text-decoration: none;
    color: white;
    transform: scale(1.15);
}

.related-books .related-book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-books .related-book-card:hover .book-image img {
    transform: scale(1.05);
}

.related-books .related-book-card .book-image i {
    font-size: 5rem;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.related-books .related-book-card:hover .book-image i {
    transform: scale(1.15);
}

.related-books .coming-soon {
    background-color: var(--surface-color);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.related-books .coming-soon .coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.related-books .coming-soon .upcoming-book-image {
    position: relative;
}

.related-books .coming-soon .upcoming-book-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.related-books .coming-soon .upcoming-book-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .related-books .coming-soon .upcoming-book-image {
        margin-bottom: 30px;
    }

    .related-books .coming-soon .upcoming-book-image img {
        max-width: 200px;
    }
}

.related-books .coming-soon .upcoming-book-info {
    text-align: left;
    padding-left: 20px;
}

.related-books .coming-soon .upcoming-book-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.related-books .coming-soon .upcoming-book-info .release-date {
    font-size: 16px;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.related-books .coming-soon .upcoming-book-info .description {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.related-books .coming-soon .upcoming-book-info .btn-notify {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-books .coming-soon .upcoming-book-info .btn-notify:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .related-books .coming-soon .upcoming-book-info {
        padding-left: 0;
        text-align: center;
    }

    .related-books .coming-soon .upcoming-book-info h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .related-books .coming-soon {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .related-books .section-header h2 {
        font-size: 28px;
    }

    .related-books .related-book-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .related-books {
        padding: 60px 0;
    }

    .related-books .section-header h2 {
        font-size: 24px;
    }

    .related-books .related-book-card .book-image img {
        height: 220px;
    }

    .related-books .related-book-card .book-info {
        padding: 20px;
    }

    .related-books .related-book-card .book-info h3 {
        font-size: 18px;
    }
}
/* </style> */

/* <style id="section-HhYkoJyp3K-style"> */
.call-to-action-3 {
    background-color: var(--accent-color);
}

.call-to-action-3 .content {
    padding: 20px 0;
}

.call-to-action-3 .content h3 {
    font-weight: 600;
    text-transform: uppercase;
}
/* </style> */

/* Video Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 117px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(232, 244, 248, 0.8) 0%,
    rgba(209, 231, 221, 0.8) 100%
  );
  z-index: 2;
} */

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
    135deg,
    rgb(44 58 63 / 45%) 0%,
    rgba(209, 231, 221, 0.8) 100%
  ); */
    background: linear-gradient(
        135deg,
        rgb(44 58 63 / 45%) 0%,
        rgb(115 115 115 / 10%) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.video-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 4;
}

.pause-btn {
    background-color: rgba(44, 90, 160, 0.9);
    border: 2px solid transparent;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.pause-btn:hover,
.pause-btn:focus {
    background-color: var(--mesa-blue);
    border-color: var(--mesa-gold);
    transform: scale(1.1);
}

.date-display {
    margin: 40px 0;
}

.date-display h1 {
    color: var(--mesa-navy);
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.date-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.date-line {
    width: 120px;
    height: 2px;
    background-color: var(--mesa-navy);
    opacity: 0.3;
}

.date-line.left {
    margin-right: 40px;
}

.date-line.right {
    margin-left: 40px;
}

/* Services Section */
.services-section {
    background-color: var(--mesa-light-gray);
    padding: 80px 0;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px;
}

.service-item:hover,
.service-item:focus {
    transform: translateY(-5px);
    border-color: var(--mesa-gold);
}

.service-item:focus {
    outline: none;
}

.service-icon {
    width: 130px;
    height: 130px;
    background-color: var(--mesa-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon,
.service-item:focus .service-icon {
    background-color: var(--mesa-blue);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4);
}

.service-icon i {
    color: white;
    font-size: 3rem;
}

.service-title {
    color: black;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}
