html {
    font-size: 62.5%; /*1rem = 10px*/
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #808080;
}

ul li {
    list-style-type: none;
}

ol {
    padding-left: 24px;
}

ol li {
    list-style-type: decimal;
    margin-bottom: 12px;
    font-variant-numeric:tabular-nums;
}

body {
    background-color: #fff;
    font-size: 1.4rem;
    font-family: "Albert Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.10em;
    line-height: 1.5;
    color: #0d0d0d;
}

header {
    z-index: 100;
    position: fixed;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 6px 12px;
    margin: 0%;
    width: 100%;
    background-color: transparent;
    color: #fff;
}

header.menu-open {
    height: 100vh;
    mix-blend-mode: normal;
    padding: 0;
}

footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #0d0d0d;
    border-top: 1px solid #fff;
    color: #fff;
    padding: 12px;
    margin: auto;
    text-align: center;
    align-items: center;
}

.nav-item {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    padding: 12px;
    width: max-content;
    color: #fff;
    text-decoration: none;
}

.nav-item:hover {
    padding: 12px;
    width: max-content;
    color: #808080;
    text-decoration: none;
}

.brand-logo-container {
    display: flex;
    align-items: center;
}

.brand-name {
    width: max-content;
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 2.4rem;
    text-transform:uppercase;
    letter-spacing: 0.10em;
    font-weight: 300;
    color: #bfbfbf;
    font-family: "Baskervvile", serif;
    font-weight: 300;
    font-style: normal;
}

.brand-logo {
    width: 64px;
    height: 64px;
    mix-blend-mode: difference;
}

.brand-logo img {
    height: 64px;
    width: 64px;
    background-image: url(resources/graphics/astrola-logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*Sections*/

#hero {
    position: relative;
    background-color: #0d0d0d;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

#services {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 48px;
}

#portfolio {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#about-the-master {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#work-process {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#faq {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#cta {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    background-color: #0d0d0d;
    height: auto;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    border: 0;
    height: fit-content;
    margin: auto;
    padding: 0;
}

#contact {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 48px;
    height: auto;
}

#service-details {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
}

#case-details {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
}

#case-process {
    display: flex;
    flex-direction: column;
    padding: 96px 24px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#terms-and-format {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#offer {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#brand-system {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#branding {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

/*Layout*/

.hero-grid {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    color: #fff;
    min-height: 100%;
}   

.hero-grid > div {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: auto 0%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}

.case-card {
    border: 0;
    border-radius: 0px;
    overflow: hidden;
    cursor: pointer;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 96px;
}



.case-card-image {
    min-height: 428px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    filter: saturate(0);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.case-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
    opacity: 1;
    transition: opacity 0.5s ease;
}

.case-card-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.case-card-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.case-card-info p {
    display: inline;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #bfbfbf;
    margin: 0;
}

.case-card:hover .case-card-image {
    filter: saturate(1);
    transform: scale(1.02);
}

.case-card:hover .case-card-image::before {
    opacity: 1;
}

.case-card:hover .case-card-info {
    opacity: 1;
    visibility: visible;
}

.popular-services {
    display: none;
    list-style-type: none;
    color: #fff;
    margin: 0% auto;
    align-items: center;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr ;
    gap: 24px;
}

.services-catalog {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-list li {
    color: #bfbfbf;
    list-style-type: none;
    font-size: 1.2rem;
}

.service-number {
    font-family: "Albert Sans", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 1.4rem;
    color: #bfbfbf;
    padding-top: 0px;
}

.cta-soft {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin: auto;
}

.cta-soft div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-soft-heading {
    font-family: "Baskervville", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 3.2rem;
    grid-column: 2 / 4;
}

.cta-soft .cta-soft-subheading {
    font-family: "Albert Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
}

#ticker {
    display: none;
    width: 100%;
    padding: 12px 0;
    margin: 24px 0;
    position: absolute;
    overflow: hidden;
    bottom: 0%;
    color: #fff;
}

.ticker-track {
    display: flex;
    gap: 48px;
    animation: scroll 15s linear infinite;
    width: fit-content;
}

.ticker-track span {
    font-family: "Baskervville", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.speach-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.master-photo {
    max-width: 100%;
}

.master-speach {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 1.4rem;
    margin: auto 0;
}

.master-name {
    font-family: "Baskervville", serif;
    font-weight: 500;
    font-size: 1.8rem;
    font-style: normal;
    letter-spacing: 0.05em;
}

.work-process-plan {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
    position: relative;
}

.work-process-card {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #bfbfbf;
    background-color: #fff;
}

.work-process-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
}
    
.work-process-card p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0;
}

.work-procecess-stage-number {
    position: absolute;
    padding: 12px;
    background-color: #404040;
    color: #fff;
    font-variant-numeric:tabular-nums;
    top: 0;
    right: 0;
}

/*Typography*/

.hero-heading {
    font-family: "Baskervville", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 4.6rem;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
}

.hero-subheading {
    font-family: "Albert Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
}

.section-heading {
    font-family: "Albert Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
}

.section-subheading {
    grid-column: 2 / 4;
    font-family: "Baskervville", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.title {
    font-family: "Albert Sans", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.8rem;
}

/*Buttons*/

.button-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-cta {
    min-width: 100%;
    padding: 16px 24px;
    background-color: #252525;
    border: 1px solid #404040;
    border-radius: 36px;
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.10em;
    cursor: pointer;
}

.btn-cta:hover {
    padding: 16px 24px;
    background-color: #151515;
    border: 1px solid #151515;
    border-radius: 36px;
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.10em;
}

.btn-secondary {
    min-width: 100%;
    padding: 16px 24px;
    background-color: transparent;
    border: 1px solid #404040;
    border-radius: 36px;
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.10em;
    cursor: pointer;
}

.btn-secondary:hover {
    padding: 16px 24px;
    background-color: #151515;
    border: 1px solid #151515;
    border-radius: 36px;
    color: #fff;
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.10em;
}

.btn-round-outlined {
    width: 100%;
    height: 48px;
    border-radius: 0px;
    border: 1px solid #f0f0f0;
    background-color: transparent;
    cursor: pointer;
    text-align: left;
    padding: 12px;
}

.btn-round-outlined:hover {
    width: 100%;
    height: 48px;
    border-radius: 0px;
    border: 0;
    background-color: #f5f5f5;
    mix-blend-mode: difference;
    text-align: right;
    padding: 12px;
}

.faq-accordeon {
    max-width: 900px;
    margin: 0 auto;
}
    
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-chevron {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(90deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-main-heading {
    font-family: "Baskervville", sans-serif;
    font-weight: 300;
    font-size: 3.2rem;
    letter-spacing: 0.10em;
    color: #fff;
    line-height: 1.25em;
}

.cta-main-subheading {
    font-family: "Baskervville", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    color: #fff;
    font-style: italic;
}

.link-list {
    display: inline-flex;
    flex-direction: row;
    gap: 24px;
    margin: auto;
}

.link {
    color: #808080;
    list-style-type: none;
    cursor: pointer;
    font-weight: 600;
    font-style: normal;
}

.link:hover {
    color: #404040;
    list-style-type: none;
    text-decoration: underline;
    transition: 0.3 ease;
}

.caption {
    color: #808080;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-group {
    display: flex;
    flex-direction: column;
    padding: 12px 0px;
}

.text-field {
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #1a1a1a;
    color: #fff;
    text-align: end;
    padding: 12px;
    font-family: "Albert Sans", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
}

.text-area {
    background-color: transparent;
    border: 0px;
    border-bottom: 1px solid #1a1a1a;
    color: #fff;
    text-align: end;
    padding: 12px;
    font-family: "Albert Sans", sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
}

.input-label {
    font-size: 1.2rem;
    color: #fff;
    padding-bottom: 6px;
}

.agreement-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
}

.agreement-text {
    font-size: 1.0rem;
    color: #fff;
}

.copy {
    font-family: "Albert Sans", sans-serif;
    font-size: 1.0rem;
}

.checkbox {
    min-width: 20px;
    height: 20px;
    accent-color: #404040;
    margin: auto 0;
}

.breadcrumbs {
    display: none;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 86px;
    mix-blend-mode: difference;
}

.breadcrumbs ul {
    display: inline-flex;
    padding: 0px 12px;
    list-style-type: none;
    mix-blend-mode: difference;
    color: #fff;
    align-items: center;
}

.breadcrumb-active {
    padding: 12px;
    width: max-content;
    color: #808080;
    text-decoration: none;
    cursor: not-allowed;
}

.contacts {
    display: flex;
    flex-direction: row;
    margin: auto;
    gap: 96px;
}

#long-article {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 96px 12px;
    margin: auto;
}

.case-hero-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    bottom: 0;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0.4);
}

.case-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-hero-container {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 24px;
    height: 100%;
    margin-top: auto;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: auto;
}

.hero-title {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 3.2rem;
    color: #fff;
}

.hero-subtitle {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1.6rem;
    color: #fff;
}

.hero-caption {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4rem;
    color: #fff;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
}

.container li {
    display: inline-flex;
    flex-direction: column;
}

.container ul {
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
}

.content-box {
    display: flex;
    flex-direction: column;
    gap: 12px;  
}

.description-text {
    font-size: 1.4rem;
    color: #bfbfbf;
}

.quote {
    font-size: 1.8rem;

}

#product-types {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 96px;
    border-top: 1px solid #f5f5f5;
}

.product-types {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

#work-process {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 96px;
    border-top: 1px solid #f5f5f5;
}

#design {
    display: flex;
    flex-direction: column;
    padding: 124px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

.methodology-roadmap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin: auto;
}

.methodology-stages {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
}

.methodology-stage-number {
    padding: 6px;
    border-radius: 0px;
    font-weight: 300;
    border: 1px solid #f0f0f0;
    align-content: center;
    text-align: center;
    font-variant-numeric: tabular-nums;
    background-color: #fff;
    font-size: 1.8rem;
    color: #bfbfbf;
}

.tools-logos {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    gap: 12px;
}

.famous-brand-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    order: 2;
}

.logo {
    height: 36px;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(1);
    margin: auto;
}

#no-code-advantages {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 96px;
    border-top: 1px solid #f5f5f5;
}

#problems-and-solutions {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 96px;
    border-top: 1px solid #f5f5f5;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 6px;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    overflow: scroll;
}

.case-roadmap {
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 24px 96px;
    padding: 24px;
    border-radius: 24px;
    background-color: #fafafa;
}

.roadmap-stage {
    margin: auto;
    color: #bfbfbf;
}

.image-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.image-container img {
    position: relative;
    width: 100%;
    border-radius: 24px;
}

.grid-1-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.grid-2-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: normal;
}

.grid-3-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: normal;
}

.wrapper {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

#target-users {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48 px;
    border-top: 1px solid #f5f5f5;
}

#research {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

#insights {
    display: flex;
    flex-direction: column;
    padding: 96px 12px;
    gap: 48px;
    border-top: 1px solid #f5f5f5;
}

.ph-tu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px;
}

.ph-tu-grid div {
    text-align: center;
    grid-column: 1/6;

}

.ph-user-avatar-l {
    width: 100%;
    margin: auto;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 12px 12px 12px 0px #f0f0f0;
}

.ph-user-avatar-m {
    width: 75%;
    margin: 0px auto;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 12px 12px 12px 0px #f0f0f0;
}

.ph-user-avatar-s {
    width: 50%;
    margin: 48px auto;
    border-radius: 100%;
    border: 2px solid #fff;
    box-shadow: 12px 12px 12px 0px #f5f5f5;
}

#user-personas {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.user-persona {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.user-persona-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 0px;
}

.user-persona-header img {
    width: 25%;
    margin: 0px;
}

.text-label {
    font-weight: 600;
    padding-bottom: 12px;
}

.back-to-top {
    width: 196px;
    height: auto;
    cursor: pointer;
    background-color: transparent;
    margin: auto;
    padding: 6px;
    font-weight: 500;
}
.back-to-top:hover {
    background-color: #1a1a1a;
}

.case-navigation {
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 12px 24px;
    bottom: 0;
    color: #fff;
    mix-blend-mode: difference;
    z-index: 100;
    gap: 12px;
}

.case-navigation li:hover {
    font-weight: 600;
    padding-left: 24px;
    cursor: pointer;
}

.image-caption-box {
    position: relative;  
    max-width: 100%; 
    padding: 0px;
}

.cookie-banner { 
    display: flex;
    max-width: 100%;
    flex-direction: column;
    gap: 24px;
    position: fixed;
    bottom: 0; 
    right: 0; 
    left: 0;
    background: #0d0d0d; 
    padding: 12px; 
    z-index: 1000; 
    align-items: center;
}

.cookie-banner-text {
    color: #fff;
}

.cookies-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: auto;
}

.cookie-btn-accept { 
    height: fit-content;
    min-width: 124px;
    background: #fff;
    color: #0d0d0d; 
    border: 1px solid #bfbfbf;
    padding: 8px 16px;
    letter-spacing: 0.10em; 
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 0px;
}

.cookie-btn-reject {
    height: fit-content;
    min-width: 124px;
    background: #252525; 
    border: 1px solid #252525; 
    color: #fff; 
    padding: 8px 16px; 
    letter-spacing: 0.10em; 
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer; 
    border-radius: 0px;
}

.cookie-btn-accept:hover { 
    height: fit-content;
    min-width: 124px;
    background: #1a1a1a;
    color: #fff; 
    border: 1px solid #252525;
    padding: 8px 16px;
    letter-spacing: 0.10em; 
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer;
}

.cookie-btn-reject:hover {
    height: fit-content;
    min-width: 124px;
    background: #1a1a1a; 
    border: 1px solid #252525; 
    color: #fff; 
    padding: 8px 16px; 
    letter-spacing: 0.10em; 
    font-family: "Albert Sans", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    cursor: pointer; 
}

.cookie-btn-customize {
    height: fit-content;
    min-width: 124px;
    background: transparent; 
    border: 1px solid #404040; 
    color: #1a1a1a; 
    padding: 8px 16px; 
    letter-spacing: 0.10em; 
    font-family: "Albert Sans", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    cursor: pointer; 
}

.burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 0px;
    cursor: pointer;
    padding: 12px;
    margin-left: auto;
    z-index: 200;
}

.burger-menu img {
    width: 24px;
    height: 24px;
    display: block;
}

.burger-menu .close-icon {
    display: none;
}

.burger-menu.active .burger-icon {
    display: none;
}

.burger-menu.active .close-icon {
    display: block;
}

.site-navigation {
    display: none;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background-color: #0d0d0d;
    z-index: 150;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.site-navigation.open {
    display: flex;
}

.site-navigation .nav-item {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

@media (min-width: 768px) {

    .nav-item {
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        padding: 12px;
        width: max-content;
        color: #fff;
        text-decoration: none;
    }

    .nav-item:hover {
        padding: 12px;
        width: max-content;
        color: #808080;
        text-decoration: none;
    }

    .brand-logo-container {
        display: flex;
    }

    .brand-name {
        display: flex;
        gap: 6px;
        align-items: center;
        font-size: 2.4rem;
        text-transform: uppercase;
        letter-spacing: 0.10em;
        font-weight: 300;
    }

    .brand-logo img {
        height: 64px;
        width: 64px;
        background-image: url(resources/graphics/astrola-logo.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /*Sections*/

    #hero {
        position: relative;
        background-color: #0d0d0d;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        
    }

    #services {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 64px;
    }

    #portfolio {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #about-the-master {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #work-process {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #faq {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #cta {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        background-color: #0d0d0d;
        height: auto;
    }

    .cta-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        border: 0;
        height: fit-content;
        margin: auto;
        padding: 0;
        text-align: center;
    }

    #contact {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 64px;
        height: 100vh;
    }

    #service-details {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
    }

    #case-details {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
    }

    #case-process {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #terms-and-format {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #offer {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #brand-system {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    #branding {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 64px;
        border-top: 1px solid #f5f5f5;
    }

    /*Layout*/

    .hero-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        padding: 124px 24px;
        color: #fff;
        min-height: 100%;
    }   

    .hero-grid > div {
        display: flex;
        flex-direction: column;
        gap: 48px;
        grid-column: 1 / 6;
        text-align: center;
        margin: auto 0%;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .case-card {
        border: 0;
        border-radius: 0px;
        overflow: hidden;
        cursor: pointer;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 96px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 96px;
    }

    .case-card-image {
        min-height: 428px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        filter: saturate(0);
        transition: filter 0.5s ease, transform 0.5s ease;
    }

    .case-card-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
        opacity: 1;
        transition: opacity 0.5s ease;
    }

    .case-card-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
        opacity: 1;
        visibility: visible;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        z-index: 1;
    }

    .case-card-info h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #fff;
        margin: 0;
    }

    .case-card-info p {
        display: none;
        font-size: 1.4rem;
        line-height: 1.5;
        color: #bfbfbf;
        margin: 0;
    }

    .case-card:hover .case-card-image {
        filter: saturate(1);
        transform: scale(1.02);
    }

    .case-card:hover .case-card-image::before {
        opacity: 1;
    }

    .case-card:hover .case-card-info {
        opacity: 1;
        visibility: visible;
    }

    .popular-services {
        display: inline-flex;
        list-style-type: none;
        color: #fff;
        margin: 0% auto;
        align-items: center;
    }

    .section-header {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: auto 1fr 1fr ;
        gap: 12px;
    }

    .services-catalog {
        display: grid;
        grid-template-columns: 1fr 1fr auto ;
        gap: 48px;
    }

    .services-list li {
        color: #bfbfbf;
        list-style-type: none;
        font-size: 1.2rem;
    }

    .service-number {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 1.4rem;
        color: #bfbfbf;
    }

    .cta-soft {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        margin: auto;
    }

    .cta-soft div {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .cta-soft-heading {
        font-family: "Baskervville", sans-serif;
        font-style: italic;
        font-weight: 400;
        font-size: 3.2rem;
        text-align: center;
        grid-column: 1 / 5;
    }

    .cta-soft .cta-soft-subheading {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 1.8rem;
        text-align: center;
    }

    #ticker {
        display: none;
        width: 100%;
        padding: 12px 0;
        margin: 24px 0;
        position: absolute;
        overflow: hidden;
        bottom: 0%;
        color: #fff;
    }

    .ticker-track {
        display: flex;
        gap: 48px;
        animation: scroll 15s linear infinite;
        width: fit-content;
    }

    .ticker-track span {
        font-size: 1.6rem;
        font-weight: 300;
        color: #fff;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    .speach-container {
        display: grid;
        grid-template-columns: 0fr 1fr 1fr 0fr;
        gap: 24px;
    }

    .master-photo {
        grid-column: 2/3;
        max-width: 100%;
    }

    .master-speach {
        display: flex;
        flex-direction: column;
        gap: 24px;
        font-size: 1.4rem;
        margin: auto 0;
    }

    .master-name {
        font-family: "Baskervville", serif;
        font-weight: 500;
        font-size: 1.8rem;
        font-style: italic;
        letter-spacing: 0.05em;
    }

    .work-process-plan {
        display: grid;
        grid-template-columns: 0.5fr 1fr 0.5fr;
        gap: 12px;
        position: relative;
    }

    .work-process-card {
        position: relative;
        padding: 24px;
        display: flex;
        flex-direction: column;
        grid-column: 2/3;
        gap: 12px;
        border: 1px solid #bfbfbf;
        background-color: #fff;
    }

    .work-process-card h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #1a1a1a;
    }
        
    .work-process-card p {
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0;
    }

    .work-procecess-stage-number {
        position: absolute;
        padding: 12px;
        background-color: #404040;
        color: #fff;
        font-variant-numeric:tabular-nums;
        top: 0;
        right: 0;
    }

    /*Typography*/

    .hero-heading {
        font-family: "Baskervville", serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 5.2rem;
        color: #fff;
        text-align: center;
        letter-spacing: 0.5rem;
    }

    .hero-subheading {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 1.8rem;
    }

    .section-heading {
        grid-column: 1 / 5;
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 3.6rem;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        text-align: center;
    }

    .section-subheading {
        grid-column: 1 / 5;
        font-family: "Baskervville", sans-serif;
        font-style: italic;
        font-weight: 400;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        text-align: center;
    }

    .title {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 600;
        font-size: 1.8rem;
        padding: 12px 0;
    }

    /*Buttons*/

    .button-container {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin: 0 auto;

    }

    .btn-cta {
        min-width: 196px;
        max-width: 248px;
        padding: 16px 24px;
        background-color: #252525;
        border: 1px solid #404040;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
        cursor: pointer;
    }

    .btn-cta:hover {
        padding: 16px 24px;
        background-color: #151515;
        border: 1px solid #151515;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
    }

    .btn-secondary {
        min-width: 196  px;
        max-width: 248px;
        padding: 16px 24px;
        background-color: transparent;
        border: 1px solid #404040;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
        cursor: pointer;
    }

    .btn-secondary:hover {
        padding: 16px 24px;
        background-color: #151515;
        border: 1px solid #151515;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
    }

    .btn-round-outlined {
        width: 48px;
        height: 48px;
        border-radius: 0px;
        border: 1px solid #f0f0f0;
        background-color: transparent;
        cursor: pointer;
    }

    .btn-round-outlined:hover {
        width: 48px;
        height: 48px;
        border-radius: 0px;
        border: 0;
        background-color: #f5f5f5;
        mix-blend-mode: difference;
    }

    .faq-accordeon {
        max-width: 900px;
        margin: 0 auto;
    }
        
    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 16px;
    }

    .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        background: none;
        border: none;
        padding: 12px 0;
        cursor: pointer;
        text-align: left;
    }

    .faq-question h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin: 0;
        flex: 1;
    }

    .faq-chevron {
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-chevron {
        transform: rotate(90deg);
    }

    .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .faq-item.active .faq-answer {
        grid-template-rows: 1fr;
    }

    .faq-answer-content {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cta-main-heading {
        font-family: "Baskervville", sans-serif;
        font-weight: 300;
        font-size: 4.8rem;
        letter-spacing: 0.10em;
        color: #fff;
        line-height: 1.25em;
    }

    .cta-main-subheading {
        font-family: "Baskervville", sans-serif;
        font-weight: 400;
        font-size: 1.8rem;
        color: #fff;
        font-style: italic;
    }

    .link-list {
        display: inline-flex;
        flex-direction: row;
        gap: 24px;
        margin: 0;
    }

    footer .link-list {
        display: inline-flex;
        flex-direction: row;
        gap: 24px;
        margin: auto;
    }

    .link {
        color: #808080;
        list-style-type: none;
        cursor: pointer;
        font-weight: 600;
        font-style: normal;
    }

    .link:hover {
        color: #404040;
        list-style-type: none;
        text-decoration: underline;
        transition: 0.3 ease;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: auto;
    }

    .field-group {
        display: flex;
        flex-direction: column;
        padding: 12px 0px;
    }

    .text-field {
        background-color: transparent;
        border: 0px;
        border-bottom: 1px solid #1a1a1a;
        color: #fff;
        text-align: end;
        padding: 12px;
        font-family: "Albert Sans", sans-serif;
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .text-area {
        background-color: transparent;
        border: 0px;
        border-bottom: 1px solid #1a1a1a;
        color: #fff;
        text-align: end;
        padding: 12px;
        font-family: "Albert Sans", sans-serif;
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .input-label {
        font-size: 1.2rem;
        color: #fff;
        padding-bottom: 6px;
    }

    .agreement-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        align-items: center;
        margin-bottom: 24px;
    }

    .agreement-text {
        font-size: 1.0rem;
        color: #fff;
    }

    .copy {
        font-family: "Albert Sans", sans-serif;
        font-size: 1.0rem;
    }

    .checkbox {
        min-width: 20px;
        height: 20px;
        accent-color: #404040;
        margin: auto 0;
    }

    .breadcrumbs {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 86px;
        mix-blend-mode: difference;
    }

    .breadcrumbs ul {
        display: inline-flex;
        padding: 0px 12px;
        list-style-type: none;
        mix-blend-mode: difference;
        color: #fff;
        align-items: center;
    }

    .breadcrumb-active {
        padding: 12px;
        width: max-content;
        color: #808080;
        text-decoration: none;
        cursor: not-allowed;
    }

    .contacts {
        display: flex;
        flex-direction: row;
        margin: auto;
        gap: 96px;
    }

    #long-article {
        display: flex;
        flex-direction: column;
        gap: 96px;
        padding: 124px 24px;
        margin: auto;
    }

    .privacy-policy {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 75%;
        margin: auto;
    }

    .service-hero-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 124px 24px;
        gap: 24px;
        height: 100%;
    }

    .case-hero-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 124px 24px;
        gap: 24px;
        height: 100%;
    }

    .service-hero-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: auto;
    }

    .case-hero-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: auto 0;
    }

    .service-hero-container h1 {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 4.8rem;
        color: #fff;
    }

    .service-hero-container p {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.6rem;
        color: #fff;
    }

    .case-hero-title {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 4.8rem;
        color: #fff;
    }

    .case-hero-subtitle {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        color: #fff;
    }

    .case-hero-caption {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.4rem;
        color: #fff;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 64px;
        width: 75%;
        margin: 0 auto;
    }

    .content-box {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .description-text {
        font-size: 1.4rem;
        color: #bfbfbf;
    }

    .quote {
        font-size: 1.8rem;

    }

    #product-types {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    .product-types {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    #work-process {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #design {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    .methodology-roadmap {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 85%;
        margin: auto;
    }

    .methodology-stages {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 24px;
    }

    .methodology-stage-number {
        padding: 6px;
        border-radius: 0px;
        font-weight: 300;
        border: 1px solid #f0f0f0;
        align-content: center;
        text-align: center;
        font-variant-numeric: tabular-nums;
        background-color: #fff;
        font-size: 1.8rem;
        color: #bfbfbf;
    }

    .tools-logos {
        display: flex;
        flex-direction: row;
        max-width: 70%;
        gap: 12px;
    }

    .famous-brand-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .logo {
        height: 64px;
        width: auto;
        background-position: center;
        background-repeat: no-repeat;
        filter: grayscale(1);
        margin: auto;
    }

    #no-code-advantages {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #problems-and-solutions {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    table {
        border-collapse: separate;
        border-spacing: 12px;
        overflow: scroll;
    }

    th {
        text-align: left;
    }

    .table {
        width: 100%;
        overflow: scroll;
    }

    .case-roadmap {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin: auto;
        gap: 24px 96px;
        padding: 24px;
        border-radius: 24px;
        background-color: #fafafa;
    }

    .roadmap-stage {
        margin: auto;
        color: #bfbfbf;
    }

    .image-container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .image-container img {
        position: relative;
        width: 100%;
        border-radius: 24px;
    }

    .grid-1-flex {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 96px;
    }

    .grid-2-flex {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 48px;
        align-items: center;
    }

    .grid-3-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: center;
    }

    #target-users {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #research {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #insights {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    .ph-tu-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 96px;
    }

    .ph-tu-grid div {
        text-align: center;
        grid-column: 1/6;

    }

    .ph-user-avatar-l {
        width: 100%;
        margin: auto;
        border-radius: 100%;
        border: 2px solid #fff;
        box-shadow: 12px 12px 12px 0px #f0f0f0;
    }

    .ph-user-avatar-m {
        width: 75%;
        margin: -48px auto;
        border-radius: 100%;
        border: 2px solid #fff;
        box-shadow: 12px 12px 12px 0px #f0f0f0;
    }

    .ph-user-avatar-s {
        width: 50%;
        margin: 48px auto;
        border-radius: 100%;
        border: 2px solid #fff;
        box-shadow: 12px 12px 12px 0px #f5f5f5;
    }

    #user-personas {
        padding: 0 48px;
        display: flex;
        flex-direction: column;
        gap: 96px;
    }

    .user-persona {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .user-persona-header {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }

    .user-persona-header {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .user-persona-header img {
        width: 75%;
        margin: auto;
    }

    .text-label {
        font-weight: 600;
        padding-bottom: 12px;
    }

    .back-to-top {
        width: 196px;
        height: auto;
        cursor: pointer;
        background-color: transparent;
        padding: 6px;
        font-weight: 500;
    }

    .back-to-top:hover {
        background-color: #1a1a1a;
    }

    .case-navigation {
        position: fixed;
        display: flex;
        flex-direction: column;
        padding: 12px 24px;
        bottom: 0;
        color: #fff;
        mix-blend-mode: difference;
        z-index: 100;
        gap: 12px;
    }

    .case-navigation li:hover {
        font-weight: 600;
        padding-left: 24px;
        cursor: pointer;
    }

    .image-caption-box {
        position: absolute; 
        top: 50%; 
        max-width: 40%; 
        padding: 0 24px; 
        transform: translateY(-50%);
        mix-blend-mode: difference;
        color: #fff;
    }

    .cookie-banner { 
        display: flex;
        max-width: 100%;
        flex-direction: row;
        gap: 24px;
        position: fixed;
        bottom: 0; 
        right: 0; 
        left: 0;
        background: #0d0d0d; 
        padding: 12px; 
        z-index: 1000; 
        align-items: center;
    }

    .cookie-banner-text {
        color: #fff;
    }

    .cookies-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-left: auto;
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    
    .nav-item {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    padding: 12px;
    width: max-content;
    color: #fff;
    text-decoration: none;
    }

    .nav-item:hover {
        padding: 12px;
        width: max-content;
        color: #808080;
        text-decoration: none;
    }

    .brand-logo-container {
        display: flex;
        align-items: center;
    }

    .brand-name {
        display: flex;
        gap: 6px;
        align-items: center;
        font-size: 2.4rem;
        text-transform:uppercase;
        letter-spacing: 0.10em;
        font-weight: 300;
    }

    .brand-logo img {
        height: 64px;
        width: 64px;
        background-image: url(resources/graphics/astrola-logo.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /*Sections*/

    #hero {
        position: relative;
        background-color: #0d0d0d;
        height: 100vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        
    }

    #services {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
    }

    #portfolio {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #about-the-master {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #what-problems-i-resolve

    #work-process {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #faq {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #cta {
        display: flex;
        flex-direction: column;
        padding: 96px 24px;
        gap: 96px;
        background-color: #0d0d0d;
        height: auto;
    }

    #contact {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        height: 100vh;
    }

    #service-details {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
    }

    #case-details {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
    }

    #case-process {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #terms-and-format {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #offer {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #brand-system {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #branding {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    /*Layout*/

    .hero-grid {
        display: grid;
        grid-template-columns: 0.5fr 1fr 0.5fr;
        padding: 124px 24px;
        color: #fff;
        min-height: 100%;
    }   

    .hero-grid > div {
        display: flex;
        flex-direction: column;
        gap: 48px;
        grid-column: 1 / 4;
        text-align: center;
        margin: auto 0%;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .case-card {
        border: 0;
        border-radius: 0px;
        overflow: hidden;
        cursor: pointer;
    }

    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 96px;
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 96px;
    }

    .case-card-image {
        min-height: 624px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        filter: saturate(0);
        transition: filter 0.5s ease, transform 0.5s ease;
    }

    .case-card-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.95));
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .case-card-info {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        z-index: 1;
    }

    .case-card-info h3 {
        font-size: 2rem;
        font-weight: 600;
        color: #fff;
        margin: 0;
    }

    .case-card-info p {
        display: inline;
        font-size: 1.4rem;
        line-height: 1.5;
        color: #bfbfbf;
        margin: 0;
    }

    .case-card:hover .case-card-image {
        filter: saturate(1);
        transform: scale(1.02);
    }

    .case-card:hover .case-card-image::before {
        opacity: 1;
    }

    .case-card:hover .case-card-info {
        opacity: 1;
        visibility: visible;
    }

    .popular-services {
        display: inline-flex;
        list-style-type: none;
        color: #fff;
        margin: 0% auto;
        align-items: center;
    }

    .section-header {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: auto 1fr 1fr ;
        gap: 12px;
    }

    .services-catalog {
        display: grid;
        grid-template-columns: 1fr 1fr auto ;
        gap: 48px;
    }

    .services-list li {
        color: #bfbfbf;
        list-style-type: none;
        font-size: 1.2rem;
    }

    .service-number {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 300;
        font-size: 1.4rem;
        color: #bfbfbf;
    }

    .cta-soft {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
        margin: auto;
    }

    .cta-soft div {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .cta-soft-heading {
        font-family: "Baskervville", sans-serif;
        font-style: italic;
        font-weight: 400;
        font-size: 3.2rem;
        text-align: center;
        grid-column: 2 / 4;
    }

    .cta-soft .cta-soft-subheading {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 1.8rem;
        text-align: center;
    }

    #ticker {
        display: flex;
        width: 100%;
        padding: 12px 0;
        margin: 24px 0;
        position: absolute;
        overflow: hidden;
        bottom: 0%;
        color: #fff;
    }

    .ticker-track {
        display: flex;
        gap: 48px;
        animation: scroll 15s linear infinite;
        width: fit-content;
    }

    .ticker-track span {
        font-size: 1.6rem;
        font-weight: 300;
        color: #fff;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    @keyframes scroll {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    .speach-container {
        display: grid;
        grid-template-columns: 0.5fr 1fr 1fr 0.5fr;
        gap: 24px;
    }

    .master-photo {
        grid-column: 2/3;
        max-width: 100%;
    }

    .master-speach {
        display: flex;
        flex-direction: column;
        gap: 24px;
        font-size: 1.4rem;
        margin: auto 0;
    }

    .master-name {
        font-family: "Baskervville", serif;
        font-weight: 500;
        font-size: 2rem;
        font-style: normal;
        letter-spacing: 0.05em;
    }

    .work-process-plan {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
        position: relative;
    }

    .work-process-card {
        position: relative;
        padding: 24px;
        display: flex;
        flex-direction: column;
        grid-column: 2/3;
        gap: 12px;
        border: 1px solid #bfbfbf;
        background-color: #fff;
    }

    .work-process-card h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #1a1a1a;
    }
        
    .work-process-card p {
        font-size: 1.4rem;
        line-height: 1.5;
        margin: 0;
    }

    .work-procecess-stage-number {
        position: absolute;
        padding: 12px;
        background-color: #404040;
        color: #fff;
        font-variant-numeric:tabular-nums;
        top: 0;
        right: 0;
    }

    /*Typography*/

    .hero-heading {
        width: 100%;
        font-family: "Baskervville", sans-serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
        font-size: 7.2rem;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1rem;
    }

    .hero-subheading {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 1.8rem;
    }

    .section-heading {
        grid-column: 2 / 4;
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 400;
        font-size: 3.6rem;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        text-align: center;
    }

    .section-subheading {
        grid-column: 2 / 4;
        font-family: "Baskervville", sans-serif;
        font-style: italic;
        font-weight: 400;
        font-size: 1.8rem;
        letter-spacing: 0.05em;
        text-align: center;
    }

    .title {
        font-family: "Albert Sans", sans-serif;
        font-style: normal;
        font-weight: 500;
        font-size: 2rem;
    }

    /*Buttons*/

    .button-container {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin: 0% auto;
    }

    .btn-cta {
        min-width: 248px;
        max-width: fit-content;
        padding: 16px 24px;
        background-color: #252525;
        border: 1px solid #404040;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
        cursor: pointer;
    }

    .btn-cta:hover {
        padding: 16px 24px;
        background-color: #151515;
        border: 1px solid #151515;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
    }

    .btn-secondary {
        min-width: 248px;
        max-width: fit-content;
        padding: 16px 24px;
        background-color: transparent;
        border: 1px solid #404040;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
        cursor: pointer;
    }

    .btn-secondary:hover {
        padding: 16px 24px;
        background-color: #151515;
        border: 1px solid #151515;
        border-radius: 36px;
        color: #fff;
        font-family: "Albert Sans", sans-serif;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 0.10em;
    }

    .btn-round-outlined {
        width: 48px;
        height: 48px;
        border-radius: 0px;
        border: 1px solid #f0f0f0;
        background-color: transparent;
        cursor: pointer;
    }

    .btn-round-outlined:hover {
        width: 48px;
        height: 48px;
        border-radius: 0px;
        border: 0;
        background-color: #f5f5f5;
        mix-blend-mode: difference;
    }

    .faq-accordeon {
        max-width: 900px;
        margin: 0 auto;
    }
        
    .faq-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 16px;
    }

    .faq-question {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        background: none;
        border: none;
        padding: 12px 0;
        cursor: pointer;
        text-align: left;
    }

    .faq-question h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin: 0;
        flex: 1;
    }

    .faq-chevron {
        transition: transform 0.3s ease;
    }

    .faq-item.active .faq-chevron {
        transform: rotate(90deg);
    }

    .faq-answer {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .faq-item.active .faq-answer {
        grid-template-rows: 1fr;
    }

    .faq-answer-content {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cta-content {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 64px;
        border: 0;
        height: fit-content;
        margin: auto;
        padding: 0;
        text-align: center;
    }

    .cta-main-heading {
        font-family: "Baskervville", sans-serif;
        font-weight: 300;
        font-size: 4.8rem;
        letter-spacing: 0.10em;
        color: #fff;
        line-height: 1.25em;
        text-transform: none;
    }

    .cta-main-subheading {
        font-family: "Baskervville", sans-serif;
        font-weight: 400;
        font-size: 1.8rem;
        color: #fff;
        font-style: italic;
    }

    .link-list {
        display: inline-flex;
        flex-direction: row;
        gap: 24px;
        margin: 0;
    }

    footer .link-list {
        display: inline-flex;
        flex-direction: row;
        gap: 24px;
        margin: auto;
    }

    .link {
        color: #808080;
        list-style-type: none;
        cursor: pointer;
        font-weight: 600;
        font-style: normal;
    }

    .link:hover {
        color: #404040;
        list-style-type: none;
        text-decoration: underline;
        transition: 0.3 ease;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: auto;
    }

    .field-group {
        display: flex;
        flex-direction: column;
        padding: 12px 0px;
    }

    .text-field {
        background-color: transparent;
        border: 0px;
        border-bottom: 1px solid #1a1a1a;
        color: #fff;
        text-align: end;
        padding: 12px;
        font-family: "Albert Sans", sans-serif;
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .text-area {
        background-color: transparent;
        border: 0px;
        border-bottom: 1px solid #1a1a1a;
        color: #fff;
        text-align: end;
        padding: 12px;
        font-family: "Albert Sans", sans-serif;
        font-size: 1.4rem;
        letter-spacing: 0.15em;
    }

    .input-label {
        font-size: 1.2rem;
        color: #fff;
        padding-bottom: 6px;
    }

    .agreement-wrapper {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        align-items: center;
        margin-bottom: 24px;
    }

    .agreement-text {
        font-size: 1.0rem;
        color: #fff;
    }

    .copy {
        font-family: "Albert Sans", sans-serif;
        font-size: 1.0rem;
    }

    .checkbox {
        min-width: 20px;
        height: 20px;
        accent-color: #404040;
        margin: auto 0;
    }

    .breadcrumbs {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 86px;
        mix-blend-mode: difference;
    }

    .breadcrumbs ul {
        display: inline-flex;
        padding: 0px 12px;
        list-style-type: none;
        mix-blend-mode: difference;
        color: #fff;
        align-items: center;
    }

    .breadcrumb-active {
        padding: 12px;
        width: max-content;
        color: #808080;
        text-decoration: none;
        cursor: not-allowed;
    }

    .contacts {
        display: flex;
        flex-direction: row;
        margin: auto;
        gap: 24px;
    }

    #long-article {
        display: flex;
        flex-direction: column;
        gap: 96px;
        padding: 124px 24px;
        margin: auto;
    }

    .privacy-policy {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 75%;
        margin: auto;
    }

    .service-hero-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 124px 24px;
        gap: 24px;
        height: 100%;
    }

    .case-hero-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 124px 24px;
        gap: 24px;
        height: 100%;
    }

    .service-hero-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-top: auto;
    }

    .case-hero-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: auto 0;
    }

    .service-hero-container h1 {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 4.8rem;
        color: #fff;
    }

    .service-hero-container p {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.6rem;
        color: #fff;
    }

    .case-hero-title {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
        font-size: 4.8rem;
        color: #fff;
    }

    .case-hero-subtitle {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 600;
        font-style: normal;
        color: #fff;
    }

    .case-hero-caption {
        font-family: "Albert Sans", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.4rem;
        color: #fff;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 64px;
        width: 50%;
        margin: 0 auto;
    }

    .content-box {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .description-text {
        font-size: 1.4rem;
        color: #bfbfbf;
    }

    .quote {
        font-size: 1.8rem;

    }

    #product-types {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    .product-types {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }

    #work-process {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #design {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    .methodology-roadmap {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 50%;
        margin: auto;
    }

    .methodology-stages {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 24px;
    }

    .methodology-stage-number {
        padding: 6px;
        border-radius: 0px;
        font-weight: 300;
        border: 1px solid #f0f0f0;
        align-content: center;
        text-align: center;
        font-variant-numeric: tabular-nums;
        background-color: #fff;
        font-size: 1.8rem;
        color: #bfbfbf;
    }

    .tools-logos {
        display: flex;
        flex-direction: row;
        max-width: 70%;
        gap: 12px;
    }

    .famous-brand-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .logo {
        height: 56px;
        width: auto;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        filter: grayscale(1);
        margin: auto;
    }

    #no-code-advantages {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #problems-and-solutions {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    table {
        border-collapse: separate;
        border-spacing: 24px;
        overflow: scroll;
    }

    th {
        text-align: left;
    }

    .table {
        width: 100%;
        overflow: hidden;
    }

    .case-roadmap {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        margin: auto;
        gap: 24px 96px;
        padding: 24px;
        border-radius: 24px;
        background-color: #fafafa;
    }

    .roadmap-stage {
        margin: auto;
        color: #bfbfbf;
    }

    .image-container {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .image-container img {
        position: relative;
        width: 100%;
        border-radius: 24px;
    }

    .grid-1-flex {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 96px;
    }

    .grid-2-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 96px;
        align-items: center;
    }

    .grid-3-flex {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 96px;
        align-items: center;
    }

    #target-users {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #research {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    #insights {
        display: flex;
        flex-direction: column;
        padding: 124px 24px;
        gap: 96px;
        border-top: 1px solid #f5f5f5;
    }

    .ph-tu-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 96px;
    }

    .ph-tu-grid div {
        text-align: center;
        grid-column: 1/6;

    }

    .ph-user-avatar-l {
        width: 100%;
        margin: auto;
        border-radius: 100%;
        border: 2px solid #fff;
        box-shadow: 12px 12px 12px 0px #f0f0f0;
    }

    .ph-user-avatar-m {
        width: 75%;
        margin: -48px auto;
        border-radius: 100%;
        border: 2px solid #fff;
        box-shadow: 12px 12px 12px 0px #f0f0f0;
    }

    .ph-user-avatar-s {
        width: 50%;
        margin: 48px auto;
        border-radius: 100%;
        border: 2px solid #fff;
        box-shadow: 12px 12px 12px 0px #f5f5f5;
    }

    #user-personas {
        padding: 0 48px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 96px;
    }

    .user-persona {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .user-persona-header {
        display: flex;
        flex-direction: row;
        gap: 24px;
    }

    .user-persona-header {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 24px;
        padding-bottom: 24px;
    }

    .user-persona-header img {
        width: 75%;
        margin: auto;
    }

    .text-label {
        font-weight: 600;
        padding-bottom: 12px;
    }

    .back-to-top {
        width: 196px;
        height: auto;
        cursor: pointer;
        background-color: transparent;
        margin: 0%;
        margin-left: auto;
        padding: 6px;
        font-weight: 500;
    }

    .back-to-top:hover {
        background-color: #1a1a1a;
    }

    .case-navigation {
        position: fixed;
        display: flex;
        flex-direction: column;
        padding: 12px 24px;
        bottom: 0;
        color: #fff;
        mix-blend-mode: difference;
        z-index: 100;
        gap: 12px;
    }

    .case-navigation li:hover {
        font-weight: 600;
        padding-left: 24px;
        cursor: pointer;
    }

    .site-navigation {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-left: auto;
        position: static;
        background-color: transparent;
        inset: auto;
        z-index: auto;
        justify-content: flex-end;
        gap: 0;
        height: auto;
        width: auto;
    }

    .site-navigation .nav-item {
        display: block;
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        color: #bfbfbf;
        text-align: center;
        text-transform: capitalize;
    }
    
    .site-navigation .nav-item:hover {
        padding: 12px;
        width: max-content;
        color: #fff;
        text-decoration: none;
        background-color: rgba(0, 0, 0, 0.2);
    }

    header {
        display: grid;
        align-items: center;
    }

    footer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        background-color: #0d0d0d;
        border-top: 1px solid #fff;
        color: #fff;
        padding: 12px;
        align-items: center;
        justify-content: space-between;
        text-align: left;

    }

    .image-caption-box {
        position: absolute; 
        top: 50%; 
        max-width: 40%; 
        padding: 0 24px; 
        transform: translateY(-50%);
        mix-blend-mode: difference;
        color: #fff;
    }

    .cookie-banner { 
        display: flex;
        max-width: 100%;
        flex-direction: row;
        gap: 24px;
        position: fixed;
        bottom: 0; 
        right: 0; 
        left: 0;
        background: #0d0d0d; 
        padding: 12px; 
        z-index: 1000; 
        align-items: center;
        border-top: 1px solid #1a1a1a;
        backdrop-filter: blur(8px);
    }

    .cookie-banner-text {
        color: #fff;
    }

    .cookies-buttons {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-left: auto;
        margin-right: 0;
    }

    .burger-menu {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px;
        margin-left: auto;
        z-index: 101;
    }

    .burger-menu img {
        width: 24px;
        height: 24px;
        display: block;
    }

    .burger-menu .close-icon {
        display: none;
    }

    .burger-menu.active .burger-icon {
        display: none;
    }

    .burger-menu.active .close-icon {
        display: block;
    }
}