:root {
    --dl-layout-size-xsmall: 16px;
    --dl-layout-space-halfunit: 8px;
    --dl-layout-space-oneandhalfunits: 24px;
    --dl-layout-space-twounits: 32px;
    --dl-layout-space-threeunits: 48px;
    --dl-layout-space-fourunits: 64px;
    --dl-layout-space-fiveunits: 80px;
    --dl-layout-space-sixunits: 96px;
    --dl-layout-size-small: 48px;
    --dl-layout-size-medium: 96px;
    --dl-layout-size-large: 144px;
    --dl-layout-size-xlarge: 192px;
    --dl-layout-size-xxlarge: 288px;
    --dl-layout-size-maxwidth: 1400px;

    --dl-layout-radius-radius2: 2px;
    --dl-layout-radius-radius4: 4px;
    --dl-layout-radius-radius8: 8px;
    --dl-layout-radius-cardradius: 8px;
    --dl-layout-radius-imageradius: 8px;
    --dl-layout-radius-inputradius: 24px;
    --dl-layout-radius-buttonradius: 24px;
    --dl-layout-radius-round: 50%;

    --dl-color-theme-primary1: #BF4408;
    --dl-color-theme-primary2: #E65103;
    --dl-color-theme-accent1: #FFFFFF;
    --dl-color-theme-accent2: #F5D1B0;
    --dl-color-theme-secondary1: #FFFFFF;
    --dl-color-theme-secondary2: #FBF1EB;
    --dl-color-theme-neutral-dark: #191818;
    --dl-color-theme-neutral-light: #FBFAF9;
}

html {
    line-height: 1.15;
    scroll-behavior: smooth;
    font-family: Inter, serif;
    font-size: 16px;
}

body {
    margin: 0;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    line-height: 1.15;
    color: var(--dl-color-theme-neutral-dark);
    background: var(--dl-color-theme-neutral-light);
    fill: var(--dl-color-theme-neutral-dark);
}

* {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    -webkit-font-smoothing: antialiased;
}

p, li, ul, pre, div, h1, h2, h3, h4, h5, h6, figure, blockquote, figcaption {
    margin: 0;
    padding: 0;
}

button {
    background-color: transparent;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, select {
    text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
    color: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

input {
    padding: 2px 4px;
}

img {
    display: block;
}

details {
    display: block;
    margin: 0;
    padding: 0;
}

summary::-webkit-details-marker {
    display: none;
}

[data-thq="accordion"] [data-thq="accordion-content"] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0;
}

[data-thq="accordion"] details[data-thq="accordion-trigger"][open] + [data-thq="accordion-content"] {
    max-height: 1000vh;
}

details[data-thq="accordion-trigger"][open] summary [data-thq="accordion-icon"] {
    transform: rotate(180deg);
}

.thq-body-small {
    font-size: 16px;
    font-family: Noto Sans, serif;
    line-height: 1.5;
}

.Content {
    font-size: 16px;
    font-family: Inter, serif;
    font-weight: 400;
    line-height: 1.15;
    text-transform: none;
    text-decoration: none;
}

.button {
    color: var(--dl-color-theme-neutral-dark);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-color: var(--dl-color-theme-neutral-dark);
    border-width: 1px;
    border-radius: var(--dl-layout-radius-radius4);
    background-color: var(--dl-color-theme-neutral-light);
}

.thq-link {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    background: linear-gradient(to right, var(--dl-color-theme-primary1) 50%, var(--dl-color-theme-neutral-dark) 50%);
    transition: background-position 300ms ease;
    font-weight: 600;
    -webkit-background-clip: text;
            background-clip: text;
    background-size: 200% 100%;
    background-position: 100%;
    -webkit-text-fill-color: transparent;
}

.thq-link:hover {
    background-position: 0 100%;
}

.thq-section-padding {
    width: 100%;
    display: flex;
    padding: var(--dl-layout-space-fiveunits);
    position: relative;
    align-items: center;
    flex-direction: column;
}

.thq-section-max-width {
    width: 100%;
    max-width: var(--dl-layout-size-maxwidth);
}

.thq-divider-horizontal {
    width: 100%;
    height: 1px;
    background-color: var(--dl-color-theme-neutral-dark);
}

.portfolio-section {
    width: 100%;
    padding: 50px 20px;
    max-width: 1200px;
    text-align: center;
}

.portfolio-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
}

.portfolio-grid {
    gap: 24px;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
}

.portfolio-item {
    cursor: pointer;
}

.portfolio-item img {
    width: 300px;
    height: 200px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

.portfolio-item:hover img {
    transform: scale(1.03);
}

.caption {
    color: #333;
    font-size: 22px;
    margin-top: 12px;
}

.services-container {
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1000px;
    font-family: 'STIX Two Text', serif;
    background-color: transparent;
}

.services-container h2 {
    color: #222;
    font-size: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 20px;
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.8);
}

.service-card h3 {
    color: #111;
    margin: 0 0 16px;
    font-size: 28px;
}

.service-card p {
    color: #444;
    margin: 0;
    font-size: 20px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.licenses-section {
    padding: 40px 20px;
    text-align: center;
    font-family: 'Stix Two Text', serif;
    background-color: transparent;
}

.licenses-title {
    font-size: 48px;
    margin-bottom: 40px;
}

.licenses-grid {
    gap: 40px;
    margin: 0 auto;
    display: grid;
    max-width: 1000px;
    grid-template-columns: repeat(2, 1fr);
}

.licenses-item {
    border: 1px solid #ccc;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s;
    border-radius: 16px;
}

.licenses-item img {
    width: 100%;
    cursor: pointer;
    max-width: 100%;
    border-radius: 10px;
}

.licenses-item p {
    font-size: 20px;
    margin-top: 15px;
}

.licenses-item:hover {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .thq-section-padding {
        padding: var(--dl-layout-space-threeunits);
    }
}

@media (max-width: 479px) {
    .thq-section-padding {
        padding: var(--dl-layout-space-oneandhalfunits);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Debugging Outline */
/** {*/
/*    outline: 1px solid red !important;*/
/*}*/

.navbar8-container1 {
    top: 0;
    width: 100%;
    display: flex;
    z-index: 1000;
    position: -webkit-sticky;
    position: sticky;
    justify-content: center;
    background-color: var(--dl-color-theme-neutral-light);
}

.navbar8-navbar-interactive {
    width: 100%;
    display: flex;
    z-index: 100;
    max-width: var(--dl-layout-size-maxwidth);
    align-items: center;
    padding-top: var(--dl-layout-space-oneandhalfunits);
    padding-left: var(--dl-layout-space-threeunits);
    padding-right: var(--dl-layout-space-threeunits);
    padding-bottom: var(--dl-layout-space-oneandhalfunits);
    justify-content: space-between;
}

.navbar8-image1 {
    height: 3rem;
}

.navbar8-links1 {
    gap: var(--dl-layout-space-twounits);
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: var(--dl-layout-space-twounits);
    flex-direction: row;
    justify-content: flex-start;
}

.navbar8-burger-menu {
    display: none;
    margin-right: 16px;
}

.navbar8-icon10 {
    width: var(--dl-layout-size-xsmall);
    height: var(--dl-layout-size-xsmall);
}

.navbar8-mobile-menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    padding: var(--dl-layout-space-twounits);
    z-index: 100;
    position: absolute;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--dl-color-theme-neutral-light);
}

.navbar8-top {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: var(--dl-layout-space-threeunits);
    justify-content: space-between;
}

.navbar8-logo {
    height: 3rem;
}

.navbar8-close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar8-icon12 {
    width: var(--dl-layout-size-xsmall);
    height: var(--dl-layout-size-xsmall);
}

.navbar8-links2 {
    gap: var(--dl-layout-space-unit);
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    align-self: flex-start;
    flex-direction: column;
}

@media (max-width: 767px) {
    .navbar8-navbar-interactive {
        padding-left: var(--dl-layout-space-twounits);
        padding-right: var(--dl-layout-space-twounits);
    }

    .navbar8-burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar8-mobile-menu {
        padding-top: var(--dl-layout-space-oneandhalfunits);
        padding-bottom: var(--dl-layout-space-oneandhalfunits);
    }
}

@media (max-width: 479px) {
    .navbar8-navbar-interactive {
        padding: var(--dl-layout-space-unit);
    }

    .navbar8-mobile-menu {
        padding: var(--dl-layout-space-unit);
    }
}

.navbar8-mobile-menu {
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    display: flex;
    padding: 0;
    z-index: 9999;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--dl-color-theme-neutral-light);
    transition: height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.navbar8-mobile-menu.open {
    height: 100vh;
    padding: var(--dl-layout-space-twounits);
}

@media (max-width: 767px) {
    .navbar8-links1 {
        display: none;
    }
}

.hero17-header78 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    background-color: #f9f9f9;
    gap: 40px;
}

.hero17-text1 {
    font-size: 2.5rem;
    font-family: 'Stix Two Text', serif;
    text-align: center;
    margin: 0;
}

.hero17-column.hero17-row {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--dl-layout-size-maxwidth);
    width: 100%;
}

.hero17-logo {
    width: 500px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.hero17-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.hero17-text2 {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    padding: 30px 20px;
    border-left: 4px solid #aaa;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    color: #333;
}

.hero17-quote-mark {
    font-size: 3rem;
    line-height: 0.6;
    color: #aaa;
}

.hero17-quote-mark.top {
    float: left;
    margin-right: 10px;
}

.hero17-quote-mark.bottom {
    float: right;
    margin-left: 10px;
}

.hero17-text4 {
    white-space: pre-wrap;
    font-family: inherit;
    margin: 0;
}

@media (max-width: 1024px) {
    .hero17-logo {
        width: 280px;
        height: 280px;
    }

    .hero17-text1 {
        font-size: 2rem;
    }

    .hero17-text2 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero17-column.hero17-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero17-logo {
        width: 250px;
        height: 250px;
    }

    .hero17-text1 {
        font-size: 1.8rem;
    }

    .hero17-text2 {
        font-size: 0.95rem;
        text-align: center;
        border-left: none;
    }

    .hero17-quote-mark.top, .hero17-quote-mark.bottom {
        float: none;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero17-logo {
        width: 200px;
        height: 200px;
    }

    .hero17-text1 {
        font-size: 1.5rem;
    }

    .hero17-text2 {
        font-size: 0.9rem;
    }
}

.portfolio-wrapper {
    width: 100%;
    padding: 0 1rem 3rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.portfolio-section {
    max-width: var(--dl-layout-size-maxwidth);
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding: 0 1rem;
}

.portfolio-title {
    font-size: 48px;
    font-family: 'Stix Two Text', serif;
    margin-bottom: 1.25rem;
    text-align: center;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 0 0 1.25rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    transition: all 0.2s ease;
}

.chip:hover {
    background: #f2f2f2;
}

.chip.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
}

.chip-label {
    line-height: 1;
}

.chip-count {
    padding: 0.15rem 0.55rem;
    border-radius: 9999px;
    background: #f3f4f6;
    font-size: 0.8rem;
    font-weight: 500;
}

.chip.active .chip-count {
    background: rgba(255, 255, 255, 0.2);
}

.portfolio-grid {
    --items-per-row: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.portfolio-item {
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 0.5rem;
    padding: 0.25rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-item.active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    background-color: #f2f2f2;
}

.portfolio-image {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
    box-sizing: border-box;
}

.caption {
    margin-top: 0.5rem;
    font-size: 1rem;
}

.portfolio-detail-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.portfolio-details-row {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: var(--dl-layout-size-maxwidth);
    box-sizing: border-box;
}

.portfolio-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.portfolio-detail-images {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.portfolio-detail-images img {
    width: 48%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.portfolio-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: left;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .portfolio-grid {
        --items-per-row: 2;
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-detail-images img {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-grid {
        --items-per-row: 1;
        grid-template-columns: 1fr;
    }

    .portfolio-details-row {
        padding: 1rem;
    }

    .portfolio-detail-images {
        flex-direction: column;
        gap: 1rem;
    }

    .portfolio-detail-images img {
        width: 100%;
    }

    .portfolio-image {
        width: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .caption {
        font-size: 0.95rem;
    }

    .portfolio-detail-content pre {
        font-size: 0.9rem;
    }
}

.services-container1 {
    width: 100%;
    padding: 2rem 1rem 3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
}

#services-scroll {
    width: 100%;
    max-width: var(--dl-layout-size-maxwidth);
}

#services-scroll > h2 {
    font-size: 36px;
    font-family: 'Stix Two Text', serif;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #222;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    width: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.service-card.active {
    background-color: #fafafa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: #666;
}

.arrow.open {
    transform: rotate(180deg);
}

.service-details-wrapper {
    padding: 0 1.2rem 0.8rem;
    overflow: hidden;
}

.service-details {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    list-style-type: disc;
}

.service-details li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.35rem;
    color: #444;
}

@media (max-width: 768px) {
    #services-scroll > h2 {
        font-size: 1.75rem;
    }

    .service-header h3 {
        font-size: 1rem;
    }

    .service-details li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #services-scroll > h2 {
        font-size: 1.5rem;
    }

    .service-header {
        padding: 0.75rem 1rem;
    }

    .service-header h3 {
        font-size: 0.95rem;
    }
}

.testimonials-container10 {
    padding: 40px 20px;
    max-width: var(--dl-layout-size-maxwidth);
    margin: 0 auto;
    box-sizing: border-box;
}

.testimonials-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Stix Two Text', serif;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
    column-gap: 20px;
    box-sizing: border-box;
}

.testimonials-item {
    flex: 0 1 14%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.testimonials-wrapper {
    position: relative;
    display: inline-block;
}

.testimonials-logo {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.2s;
}

.testimonials-wrapper:hover .testimonials-caption {
    opacity: 1;
    visibility: visible;
}

.testimonials-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 10;
    white-space: normal;
    max-width: 90vw;
}

@media (max-width: 1200px) {
    .testimonials-item {
        flex: 0 1 16%;
    }
}

@media (max-width: 992px) {
    .testimonials-item {
        flex: 0 1 20%;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .testimonials-item {
        flex: 0 1 25%;
    }

    .testimonials-logo {
        max-width: 100px;
        max-height: 60px;
    }

    .testimonials-caption {
        font-size: 0.8rem;
        bottom: -35px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-item {
        flex: 0 1 50%;
    }

    .testimonials-logo {
        max-width: 90px;
        max-height: 50px;
    }

    .testimonials-caption {
        font-size: 0.75rem;
        bottom: -30px;
    }
}

.licenses-container10 {
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    padding: 2rem 1rem 3rem;
    box-sizing: border-box;
}

.licenses-container12 {
    display: contents;
}

.licenses-title {
    font-size: 48px;
    font-family: 'Stix Two Text', serif;
    text-align: center;
    margin-bottom: 2rem;
}

.licenses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: var(--dl-layout-size-maxwidth);
}

.licenses-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    padding: 1rem;
    min-height: 100px;
}


.licenses-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.licenses-item img:hover {
    transform: scale(1.03);
}

.licenses-item p {
    margin-top: 0.5rem;
    font-size: 20px;
    color: #333;
}

@media (max-width: 1024px) {
    .licenses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .licenses-title {
        font-size: 2rem;
    }

    .licenses-grid {
        grid-template-columns: 1fr;
    }

    .licenses-item img {
        max-width: 100%;
    }

    .licenses-item p {
        font-size: 0.95rem;
    }
}

.contact10-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}

.contact10-max-width {
    width: 100%;
    max-width: var(--dl-layout-size-maxwidth);
    box-sizing: border-box;
    padding-left: 16px;
    padding-right: 16px;
}

.contact10-content1 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
}

.contact10-text-block {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 280px;
    box-sizing: border-box;
}

.contact10-heading {
    font-family: 'Stix Two Text', serif;
    font-size: 48px;
    margin-bottom: 8px;
}

.contact10-section h3 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
}

.contact10-section p {
    margin: 4px 0;
    line-height: 1.7;
    font-size: 16px;
    word-break: break-word;
}

.contact10-section a {
    color: #0070f3;
    text-decoration: none;
    word-break: break-all;
}

.contact10-section a:hover {
    text-decoration: underline;
}

.contact10-map {
    flex: 1 1 500px;
    min-width: 300px;
    min-height: 300px;
    height: 100%;
    max-height: 400px;
    box-sizing: border-box;
    border-radius: 12px;
    overflow: hidden;
}

.contact10-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    min-height: 300px;
}

@media (max-width: 1024px) {
    .contact10-heading {
        font-size: 36px;
    }

    .contact10-map {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .contact10-content1 {
        flex-direction: column;
    }

    .contact10-map {
        width: 100%;
        height: 220px;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    .contact10-heading {
        font-size: 28px;
        text-align: center;
    }

    .contact10-text-block {
        gap: 24px;
    }

    .contact10-section h3 {
        font-size: 18px;
    }

    .contact10-section p {
        font-size: 15px;
    }

    .contact10-map {
        height: 180px;
        min-height: 180px;
    }
}

.clickable {
    cursor: pointer;
    text-decoration: underline;
    color: #007bff;
}

.fullscreen-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.footer4-footer7 {
    width: 100%;
    height: 293px;
    display: flex;
    overflow: hidden;
    position: relative;
    align-items: center;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
}

.footer4-max-width {
    gap: var(--dl-layout-space-threeunits);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer4-credits {
    gap: var(--dl-layout-space-twounits);
    display: flex;
    align-self: stretch;
    align-items: center;
    flex-direction: column;
}

.footer4-row {
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    flex-shrink: 0;
    justify-content: space-between;
}

.footer4-container {
    display: flex;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .footer4-row {
        gap: var(--dl-layout-space-oneandhalfunits);
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 479px) {
    .footer4-max-width {
        gap: var(--dl-layout-space-oneandhalfunits);
    }
}

.laboratory-wrapper {
    width: 100%;
    padding: 0 1rem 3rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.laboratory-section {
    max-width: var(--dl-layout-size-maxwidth);
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    padding: 0 1rem;
}

.laboratory-title {
    font-size: 48px;
    font-family: 'Stix Two Text', serif;
    margin-bottom: 1.25rem;
    text-align: center;
}

.laboratory-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.laboratory-track {
    display: flex;
    width: -webkit-max-content;
    width: max-content;
    gap: 2rem;
    animation: scroll-left 60s linear infinite;
}

.laboratory-slide {
    flex: 0 0 auto;
    padding: 0.5rem;
    box-sizing: border-box;
}

.laboratory-slide img {
    height: 250px;
    width: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .laboratory-title {
        font-size: 2rem;
    }

    .laboratory-slide img {
        height: 150px;
    }
}

.home-container {
    width: 100%;
    display: flex;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
}

.not-found-container1 {
    width: 100%;
    display: flex;
    overflow: auto;
    min-height: 100vh;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.not-found-container2 {
    display: flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.not-found-text2 {
    color: rgb(38, 38, 38);
    font-size: 252px;
    margin-top: -20px;
    font-weight: 900;
    margin-bottom: -20px;
    letter-spacing: -20px;
}

.not-found-container3 {
    width: 421px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.not-found-text3 {
    text-align: center;
    font-weight: 400;
}

