/* Font Faces */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Layout */
.container {
    margin: 0 auto;
    padding: 0 8%;
}

nav {
    background-color: #333;
    color: #ffffff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navBarButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.phoneIcon,
.letterIcon {
    display: none;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.3em;
}

.burger span {
    height: 4px;
    width: 32px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.4s;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #DADADA;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.content {
    text-align: left;
    background: #2F2F2F;
    padding: 3rem;
    border-radius: 10px;
    width: 50%;
    margin: 0 auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #DADADA;
    font-weight: 500;
}

p {
    font-size: 1.2rem;
    color: #DADADA;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hero-section {
    text-align: center;
    background: #E6E6E6;
    color: #000000;
    padding: 4rem 2rem;
    margin-bottom: 2rem;
}

.hero-section h1 {
    color: #000000;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-section h3 {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-container {
    margin: 2rem 0;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.section-divider {
    border: none;
    height: 2px;
    background-color: #555;
    margin: 3rem 0;
}

.content .image-wrapper img {
    position: static;
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0;
}

/* Shared Content Lists */
.content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #DADADA;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #484848f7;
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .phoneIcon,
    .letterIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
    }

    .phoneIcon img {
        filter: brightness(0) invert(1);
        width: 30px;
        height: 28px;
    }

    .letterIcon img {
        filter: brightness(0) invert(1);
        width: 35px;
        height: 28px;
    }

    .content {
        width: 90%;
        margin: 1rem auto;
        padding: 1.5rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section h3 {
        font-size: 1.3rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p,
    .question-box-text {
        font-size: 1.1rem;
    }

    .video-container iframe {
        height: 250px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .spotify-player-container iframe {
        height: 250px;
    }
}

/* Standard Page Adjustments */
body.page-standard main {
    margin-top: 80px;
}

body.page-standard h3,
body.page-standard h4 {
    color: #ffffff;
}

/* Homepage Extras */
body.page-home .info-container-header a {
    color: #000000;
    text-decoration: none;
    font-weight: inherit;
}

body.page-home .info-container-header a:hover {
    color: #333333;
    text-decoration: underline;
}

body.page-home .city-list {
    margin: 0.5em 0 0 1.5em;
    padding: 0;
    list-style-type: disc;
}

body.page-home h2.subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

body.page-home .city-list li {
    margin: 0.2em 0;
}

body.page-home .city-list a {
    color: #000000;
    text-decoration: none;
}

body.page-home .city-list a:hover {
    color: #333333;
    text-decoration: underline;
}

/* Resources Page Styles */
body.page-resources a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s;
}

body.page-resources a:hover {
    color: #DADADA;
}

body.page-resources .blog-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

body.page-resources .blog-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #3A3A3A;
    border: 1px solid #555;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.1s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

body.page-resources .blog-card:hover {
    background: #444;
}

body.page-resources .blog-card:active {
    transform: translateY(1px);
}

body.page-resources .blog-card-video {
    flex: 0 0 220px;
    height: 124px;
    overflow: hidden;
    border-radius: 8px;
}

body.page-resources .blog-card-video iframe {
    width: 220px;
    height: 124px;
    border: 0;
    border-radius: 8px;
}

body.page-resources .blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-resources .blog-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

body.page-resources .blog-card-desc {
    font-size: 1rem;
    color: #DADADA;
}

/* Blog Page Styles */
body.page-blog .content a {
    color: #DADADA;
    text-decoration: none;
    transition: color 0.3s;
}

body.page-blog .content a:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body.page-resources .blog-card {
        flex-direction: column;
    }

    body.page-resources .blog-card-video {
        width: 100%;
        height: auto;
    }

    body.page-resources .blog-card-video iframe {
        width: 100%;
        height: 200px;
    }
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Base Styles */
body {
    margin: 0px;
    padding: 0px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #2F2F2F;
    color: #ffffff;
    opacity: 1;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Layout Classes */
.info {
    display: block;
    padding-top: 90px;
    position: relative;
    width: 100%;
    max-height: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    padding-bottom: 100px;
    max-width: 100%;
}

.home {
    text-align: center;
    padding-top: 150px;
    height: 600px;
    background-color: #E6E6E6;
    color: #000000;
}

.info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #DADADA;
    font-size: 20px;
    line-height: 150%;
}

.info-container-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #DADADA;
    font-size: 20px;
    line-height: 150% !important;
    text-align: left;
    align-items: start;
    position: relative;
    padding-left: 250px;
    padding-top: 170px;
    z-index: 1;
}

.image-wrapper {
    font-size: 22px !important;
    padding-right: 5px;
    margin-left: 0;
    max-width: 100%;
    min-width: 650px;
    width: 100%;
    position: unset;
    overflow: hidden;
    height: unset;
    bottom: unset;
}

.image-wrapper img {
    position: absolute;
    bottom: 0;
    right: 0px;
    width: auto;
    height: 90%;
    object-fit: cover;
}

.info-container-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #DADADA;
    font-size: 20px;
    line-height: 150%;
}

.info-container-about-styled {
    display: flex;
    flex-direction: column;
    color: #DADADA;
    font-size: 20px;
    line-height: 150%;
    padding-right: 100px;
    justify-content: unset;
    width: 550px;
    align-items: start;
}

.info-title {
    padding-bottom: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-block-start: 0em;
}

.info-title-areas {
    padding-bottom: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-block-start: 0em;
}

.hr-divider {
    min-width: 100%;
    width: auto;
}

.main-container {
    padding-top: 90px;
    padding-left: 25%;
    padding-right: 25%;
}

.components-container {
    margin: 0 auto;
}

.container-text {
    font-size: 20px;
    line-height: 150%;
}

.dropdown-description {
    width: 100%;
}

/* Animation Classes - Removed animations */
h1 {
    transform: translateY(0);
    opacity: 1;
}

h1.appear {
    transform: translateY(0);
    opacity: 1;
}

h3 {
    transform: translateY(0);
    opacity: 1;
}

h3.appear {
    transform: translateY(0);
    opacity: 1;
}

.text {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.text.appear {
    transform: translateY(0);
    opacity: 1;
}

/* Home Page Specific Styles */
.title {
    margin-block-start: 0.1em;
    margin-block-end: 0.1em;
    font-size: 24px;
    font-weight: 700;
    z-index: 20;
    color: #000000;
}

.description {
    margin-block-start: 0.05em;
    margin-block-end: 0.05em;
    font-size: 22px;
    font-weight: 400;
    z-index: 9999;
    color: #000000;
}

.info-container-header .description:first-of-type {
    font-size: 24px;
    font-weight: 700;
}

.certifications {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.certifications img {
    max-width: 35%;
}

body.page-home .content ul li a,
body.page-location .content ul li a {
    color: inherit;
    text-decoration: underline;
    font-style: italic;
}

body.page-home .info.home {
    padding-top: 100px;
}

body.page-home .info-container-header {
    padding-top: 100px;
}

/* Question Box Styles */
.question-box-text {
    font-size: 1.2rem;
    color: #DADADA;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.question-form {
    margin-top: 2rem;
}

.question-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #555;
    border-radius: 10px;
    background: #3A3A3A;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    margin-bottom: 1rem;
}

.question-input:focus {
    outline: none;
    border-color: #ffffff;
}

.question-input::placeholder {
    color: #999;
}

.question-submit {
    background: #ffffff;
    color: #2F2F2F;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-submit:hover {
    background: #DADADA;
    transform: translateY(-2px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Soundtrack Styles */
.soundtrack-box {
    gap: 24px;
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.soundtrack-box-text {
    max-width: 100%;
    font-size: 20px;
    line-height: 150%;
    color: #DADADA;
    text-align: center;
    margin-bottom: 20px;
}

.spotify-player-container {
    width: 100%;
    max-width: 100%;
    margin: 2rem 0;
}

.spotify-player-container iframe {
    width: 100%;
    height: 352px;
    border-radius: 12px;
}

.soundtrack-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding-top: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #DADADA;
    margin-bottom: 4px;
}

.form-input {
    width: 100%;
    background: #3A3A3A;
    color: #FFFFFF;
    border: 1px solid #555;
    border-radius: 8px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
}

.form-input:focus {
    outline: 2px solid #888;
}

.soundtrack-submit {
    align-self: center;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
    margin-top: 8px;
}

.soundtrack-submit:hover:not(:disabled) {
    background: #e6e6e6;
}

.soundtrack-submit:active:not(:disabled) {
    transform: translateY(1px);
}

.soundtrack-submit:disabled {
    opacity: .4;
    cursor: not-allowed;
}

/* Navbar Styles */
.nav {
    background-color: #333;
    color: #fff;
    padding-top: 1em;
    padding-bottom: 1em;
    text-align: center;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.navBarButtons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.mobileControls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5%;
    padding-right: 5%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5em;
}

.burger span {
    height: 4px;
    width: 32px;
    background-color: white;
    margin: 4px 0;
    transition: 0.4s;
}

.ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    font-family: Montserrat, sans-serif !important;
    font-size: 20px;
}

.li {
    margin-right: 60px;
    margin-left: 60px;
}

.phoneIcon {
    display: none;
}

.letterIcon {
    display: none;
}

.brandName {
    display: none;
    font-family: Montserrat, sans-serif !important;
}

.ul.open {
    display: flex;
}

/* Expertise Card Styles */
.dropDownCardContainer {
    margin-bottom: 1rem;
}

.dropDownCard {
    background: #3A3A3A;
    border: 1px solid #555;
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.dropDownCard:hover {
    background: #444;
}

.card-title {
    font-weight: 500;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    color: #ffffff;
}

.dropdown-description {
    color: #DADADA;
    font-size: 1rem;
}

.dropDownCardInnerText {
    display: none;
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #555;
    margin-top: 1rem;
}

.dropDownCardInnerText.active {
    display: block;
}

.dropDownCardInnerText ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.dropDownCardInnerText li {
    margin-bottom: 0.5rem;
    color: #DADADA;
}

.arrow {
    position: relative;
    width: 20px;
    height: 12px;
    transition: transform 0.2s ease;
    padding-right: 10px;
    transform-origin: center;
}

/* Price Card Styles */
.divider {
    width: calc(100% - 50px);
    margin: 0 0 10px 0;
    border: none;
    height: 1px;
    background-color: #999999;
    margin-right: 50px;
}

.perSession {
    font-size: 15px;
}

.price {
    font-size: 26px;
    font-weight: 500;
}

.priceContainer {
    padding-bottom: 20px;
}

.cardTitle {
    font-weight: 500;
    font-size: 26px;
    padding-bottom: 6px;
}

.cardSubTitle {
    font-weight: 500;
    font-size: 26px;
    padding-bottom: 6px;
    margin-top: -6px;
}

.cardDescription {
    padding-right: 20%;
    margin-bottom: 10px;
}

.priceCard {
    color: black;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-top: 25px;
    display: block;
    padding-left: 50px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-container-header {
        padding-top: 200px;
        padding-left: 0;
        padding-right: 219px;
    }

    .info-container {
        font-size: 22px;
        padding-right: 5px;
        width: auto;
        margin-left: 28px;
        max-width: 90%;
        min-width: 650px;
    }

    .info-container-about {
        font-size: 22px;
        margin-right: 35px;
    }

    .info-container-about-styled {
        width: 100px;
    }

    .image-wrapper {
        height: 80vh;
        bottom: 60%;
    }

    .image-wrapper img {
        right: -30% !important;
        height: 100%;
        width: 100%;
        bottom: -10%;
    }

    .info-container img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        height: 80%;
        object-fit: cover;
    }

    .main-container {
        max-width: 100%;
        min-width: 650px;
        width: auto;
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 4%;
        margin-left: 4%;
    }

    .home {
        height: 700px;
        padding-left: 0;
        position: relative;
        overflow: hidden;
    }

    .info {
        display: block;
        max-width: 100%;
        min-width: 650px;
        width: auto;
    }

    h1.appear {
        transform: translateY(0);
        opacity: 1;
        line-height: 40px;
    }

    .container-text {
        font-size: 22px;
        margin-left: 27px;
    }

    .info-title {
        margin-left: 29px;
    }

    .info-title-areas {
        padding-bottom: 10px;
        margin-left: 3px;
    }

    .title {
        font-size: 50px;
        margin-left: 50px;
    }

    .description {
        font-size: 25px;
        font-weight: 500;
        line-height: 1.2;
        margin-left: 50px;
    }

    .nav {
        padding-top: 2em;
        padding-bottom: 2em;
    }
    
    .ul {
        display: none;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 5.8em;
        left: 0;
        width: 100%;
        background-color: #484848f7;
        padding: 1em 0;
    }
    
    .burger {
        display: flex;
        padding-left: 12px;
        order: 3;
    }

    .li {
        margin: 1em 0;
    }

    .phoneIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 2;
    }

    .letterIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 1;
    }

    .phoneIcon img {
        filter: brightness(0) invert(1);
        margin-left: 40%;
    }

    .letterIcon img {
        filter: brightness(0) invert(1);
    }

    .brandName {
        display: flex;
        font-size: 36px;
        font-weight: bold;
    }
}

@media (max-width: 820px) and (min-width: 769px) {
    .info-container-header {
        padding-top: 120px;
        padding-left: 0;
        padding-right: 219px;
    }

    .info-container {
        font-size: 22px;
        padding-right: 5px;
        width: auto;
        margin-left: 37px;
        max-width: 90%;
        min-width: 650px;
    }

    .info-container-about {
        font-size: 22px;
        margin-right: 35px;
    }

    .info-container-about-styled {
        width: 100px;
    }

    .image-wrapper {
        height: 100vh;
        bottom: 50%;
    }

    .image-wrapper img {
        right: -200px;
        height: 95%;
    }

    .info-container img {
        height: 80%;
    }

    .main-container {
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 4%;
        margin-left: 4px;
    }

    .home {
        height: 700px;
        padding-left: 0;
        position: relative;
        overflow: hidden;
    }

    .info {
        min-width: 650px;
    }

    h1.appear {
        transform: translateY(0);
        opacity: 1;
        line-height: 40px;
    }

    .container-text {
        font-size: 22px;
        margin-left: 36px;
    }

    .info-title {
        margin-left: 36px;
    }

    .info-title-areas {
        padding-bottom: 10px;
        margin-left: 4px;
    }

    .title {
        font-size: 35px;
        margin-left: 50px;
    }

    .description {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
        margin-left: 50px;
    }

    .burger {
        display: flex;
        padding-left: 12px;
        order: 3;
    }

    .li {
        margin: 1em 0;
    }
    
    .phoneIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 2;
    }

    .letterIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 1;
    }

    .phoneIcon img {
        filter: brightness(0) invert(1);
        margin-left: 15px;
    }

    .letterIcon img {
        filter: brightness(0) invert(1);
    }

    .brandName {
        display: flex;
        font-size: 36px;
        font-weight: bold;
    }

    .soundtrack-box-text { 
        font-size: 20px; 
    }
    
    .form-input { 
        font-size: 18px; 
    }
}

@media (max-width: 768px) {
    .info-container-header {
        padding-top: 220px;
        padding-left: 0;
        padding-right: 219px;
    }

    .info-container {
        font-size: 22px;
        padding-right: 5px;
        width: auto;
        margin-left: 0;
        max-width: 90%;
        min-width: 650px;
    }

    .info-container-about {
        font-size: 22px;
        margin-right: 35px;
    }

    .dropdown-description {
        width: 96%;
    }

    .info-container-about-styled {
        width: 100px;
    }

    .image-wrapper {
        height: 100vh;
        bottom: 50%;
    }

    .image-wrapper img {
        right: -180px;
        height: 70%;
    }

    .info-container img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        height: 80%;
        object-fit: cover;
    }

    .main-container {
        max-width: 100%;
        min-width: 650px;
        width: auto;
        padding-left: 0px;
        padding-right: 0px;
        margin-right: 4%;
        margin-left: 4%;
    }

    .home {
        height: 700px;
        padding-left: 0;
        position: relative;
        overflow: hidden;
    }

    .info {
        display: block;
        max-width: 100%;
        min-width: 650px;
        width: auto;
    }

    h1.appear {
        transform: translateY(0);
        opacity: 1;
        line-height: 40px;
    }

    .container-text {
        font-size: 22px;
        margin-left: 0;
    }

    .info-title {
        margin-left: 10px;
    }

    .info-title-areas {
        padding-bottom: 10px;
        margin-left: 0;
    }

    .title {
        font-size: 40px;
        margin-left: 25px;
    }

    .description {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.2;
        margin-left: 25px;
    }

    .burger {
        display: flex;
        padding-left: 12px;
        order: 3;
    }

    .li {
        margin: 1em 0;
    }

    .phoneIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 2;
    }

    .letterIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 1;
    }

    .phoneIcon img {
        filter: brightness(0) invert(1);
    }

    .letterIcon img {
        filter: brightness(0) invert(1);
    }

    .brandName {
        display: flex;
        font-size: 36px;
        font-weight: bold;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 853px) {
    .burger {
        display: flex;
        padding-left: 12px;
        order: 3;
    }

    .li {
        margin: 1em 0;
    }

    .phoneIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 2;
    }

    .letterIcon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: inherit;
        text-decoration: none;
        order: 1;
    }

    .phoneIcon img {
        filter: brightness(0) invert(1);
    }

    .letterIcon img {
        filter: brightness(0) invert(1);
    }

    .brandName {
        display: flex;
        font-size: 36px;
        font-weight: bold;
    }
}
