/* =========================================================
   GLOBAL
========================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    overflow-x: hidden;
}

.page-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.eyebrow-decoration {
    width: 8rem;
    height: 0;
    border-bottom: 3px solid #aa7269;
    flex-shrink: 0;
}

.icon-png {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-block;
    flex-shrink: 0;
    object-fit: contain;
}

.icon-png.sm {
    width: 1.6rem;
    height: 1.6rem;
}

.icon-png.md {
    width: 2.2rem;
    height: 2.2rem;
}

.icon-png.lg {
    width: 3rem;
    height: 3rem;
}

/* =========================================================
   TITLE HEADER TEMPLATES
========================================================= */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #494949;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 400;
    line-height: 1.7;
    color: #6b7280;
}

.section-header .eyebrow-decoration {
    margin: 0 auto;
}

.main-title h2 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 0.2rem;
    font-size: 5rem;
    font-weight: 600;
}

.section-header.who-we-are-title .eyebrow-decoration {
    margin: 0;
}

.eyebrow-title {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 5rem;
}

.section-header.eyebrow-title .text-eyebrow {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: #8baaa9;
    line-height: 1;
}

.section-header .text-eyebrow {
    font-weight: 500;
    line-height: 1;
}

/* =========================================================
   BANNER SECTION
========================================================= */

.banner {
    position: relative;
    width: 100%;
    padding: 25rem 0 0 0;
    overflow: visible;
    background: linear-gradient(to bottom, #f2f6f8 0%, #ffffff 100%);
}

.banner::after {
    content: '';
    position: absolute;
    inset: 0;
}

.banner .page-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    height: 100%;
}

.landing-page-text {
    position: relative;
    z-index: 2;
}

.banner #home-text {
    font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #494949;
    margin-bottom: 1rem;
}

.banner #home-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    color: #8baaa9;
}

.cardboard {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border-radius: 2rem;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05), 0px 0px 50px rgba(0, 0, 0, 0.05);
}

.cardboard img {
    display: block;
    width: 70rem;
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
}

.banner-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-width: 19rem;
    height: 5.4rem;
    padding: 0 2.4rem;
    border-radius: 1rem;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-button-icon {
    width: 1.8rem;
    height: 1.8rem;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.hero-button:hover .hero-button-icon {
    transform: translate(2px, -2px);
}

.hero-button-secondary {
    border: 1px solid #494949;
    background-color: #494949;
    color: #ffffff;
}

.hero-button-secondary:hover {
    background-color: #707070;
    border-color: #707070;
    color: #ffffff;
}

/* =========================================================
   PRODUCT SECTION
========================================================= */

.product-section {
    position: relative;
    padding-top: 20rem;
}

.products {
    margin: 0;
}

.products-grid {
    margin-top: 0;
}

.products-panel {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    perspective: 1000px;
}

.product-panel-item {
    display: flex;
    flex-direction: column;
    min-height: 48rem;
    background-color: #ffffff;
    border-radius: 0.8rem;
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-panel-item:hover {
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.05);
}

.product-panel-image {
    display: inline-block;
    margin-bottom: 2rem;
    background-color: #f4efe6;
    border-radius: 0.4rem;
    overflow: hidden;
}

.product-panel-image img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    padding: 1rem 1rem;
}

.product-panel-item h3 {
    margin: 0 0 1rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.8;
    color: #494949;
    text-align: left;
    padding: 0 2rem;
}

.product-panel-item p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.75;
    color: #6b7280;
    text-align: left;
    padding: 0 2rem;
}

.product-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 1.2rem 2rem;
    border: 1px solid #494949;
    border-radius: 1rem;
    background-color: #494949;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.product-card-button:hover {
    background-color: #707070;
    color: #ffffff;
}

.product-panel-footer {
    margin-top: auto;
    padding: 2rem 2rem 2rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.product-divider {
    width: 4rem;
    border-bottom: 2px solid #aa7269;
    margin: 0 0 2.5rem 0;
}

/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding: 22rem 0 0;
    background-color: #ffffff;
}

.about-who {
    width: 100%;
    padding: 10rem 0;
    background-color: #ebf0f3;
}

.about-who-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.about-who-text {
    flex: 1;
}

.who-we-are-title {
    align-items: flex-start;
}

.about-who-text .desc p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.7;
    color: #555;
}

.about-who-image {
    flex: 1;
}

.about-who-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

.button.about1 {
    margin-top: 2rem;
    transform: none;
    justify-content: flex-start;
}

.about-standout {
    padding: 20rem 0 0;
}

.about-link {
    margin-top: 0;
    padding-top: 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.why-us-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-us-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    margin-bottom: 2rem;
    background-color: #edf3ed;
    border-radius: 1.2rem;
}

.why-us-card h3 {
    margin: 0 0 1.5rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #494949;
}

.why-us-card p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    color: #6b7280;
}

.who-we-serve-section {
    padding: 20rem 0 0;
}

.who-we-serve-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.who-we-serve-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2rem;
    object-fit: cover;
}

.who-we-serve-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.who-we-serve-list {
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
}

.who-we-serve-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
}

.who-we-serve-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    background-color: #edf3ed;
    border-radius: 1.2rem;
}

.who-we-serve-icon i {
    font-size: 1.9rem;
    color: #8baaa9;
}

.who-we-serve-text h3 {
    margin: 0 0 0.8rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #494949;
}

.who-we-serve-text p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    color: #6b7280;
}

.our-customers-section {
    margin-top: 15rem;
    padding: 10rem 0;
    background-color: #f4f6f7;
}

.customers-scroll {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.customers-track {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: customers-scroll 45s linear infinite;
}

.customer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 16rem;
}

.customer-logo img {
    max-width: 14rem;
    max-height: 7rem;
    width: auto;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.25s ease;
}

.customer-logo img:hover {
    opacity: 1;
}

@keyframes customers-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 5rem 0 10rem;
}

.how-it-works-section {
    width: 100%;
    padding: 10rem 0;
}

.process-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 110rem;
    margin: 0 auto;
}

.process-row {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 2.5rem;
    align-items: center;

    max-width: 85rem;
    margin: 0 auto;

    padding: 3rem 5rem;
    border-radius: 1.8rem;

    background-color: #ffffff;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.04);
}

.process-step-badge {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 7rem;
    height: 7rem;

    border-radius: 1.6rem;
    background-color: #8baaa9;

    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
}

.process-row-content {
    text-align: left;
}

.process-row-content h3 {
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #494949;
}

.process-row-content p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.7;
    color: #6b7280;
}

.contact-form-section {
    padding: 7rem 0 0;
}

.contact-layout {
    display: flex;
    justify-content: center;
}

.contact-form-card {
    width: 100%;
    max-width: 82rem;
    padding: 3rem 2.8rem;
    background-color: #ffffff;
    border-radius: 1.4rem;
    box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.05);
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.form-row.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-field label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #494949;
}

.required {
    color: #d9534f;
    margin-left: 0.2rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 0.9rem;
    background-color: #fafafa;
    padding: 1.2rem 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input {
    height: 4.8rem;
}

.form-field textarea {
    min-height: 13rem;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #9a9a9a;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #8baaa9;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(139, 170, 169, 0.12);
}

.form-error {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: #d9534f;
    margin-top: 0.2rem;
    min-height: 1.3rem;
}

.form-field input.error {
    border-color: #d9534f;
    background-color: #fff8f8;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-submit-button {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    min-width: 16rem;
    height: 4.8rem;
    margin-top: 0.6rem;
    border: 1px solid #494949;
    border-radius: 0.9rem;
    background-color: #494949;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-submit-button:hover {
    background-color: #707070;
}

.contact-submit-button:disabled {
    background-color: #bdbdbd;
    border-color: #bdbdbd;
    cursor: not-allowed;
    transform: none;
}

.form-success-message {
    margin-bottom: 1.6rem;
    padding: 1.4rem 1.6rem;
    border-radius: 1rem;
    background-color: #edf7ed;
    color: #2f6b3b;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
    .banner #home-text {
        font-size: 4.8rem;
    }

    .products-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-who-content,
    .who-we-serve-layout {
        gap: 4rem;
    }
}

@media (max-width: 991px) {
    .page-container {
        padding: 0 2rem;
    }

    .section-header {
        gap: 0.6rem;
    }

    .section-header h2 {
        font-size: 3.4rem;
    }

    .section-header p {
        font-size: 1.7rem;
    }

    .who-we-are-title .eyebrow-decoration {
        margin: 0.6rem 0 0 0;
    }

    .main-title {
        gap: 0.6rem;
    }

    .main-title h2 {
        font-size: 4.2rem;
    }

    .eyebrow-title {
        margin-bottom: 3.5rem;
    }

    .section-header.eyebrow-title .text-eyebrow {
        font-size: 3rem;
    }

    .banner {
        padding: 16rem 0 0 0;
    }

    .banner .page-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4rem;
    }

    .landing-page-text {
        width: 100%;
        text-align: center;
    }

    .banner #home-text {
        font-size: 4.6rem;
        line-height: 1.15;
    }

    .banner #home-desc {
        font-size: 2rem;
        line-height: 1.6;
        max-width: 72rem;
        margin: 0 auto;
    }

    .banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cardboard {
        width: 100%;
        max-width: 72rem;
        margin: 0 auto;
    }

    .cardboard img {
        width: 100%;
    }

    .product-section,
    .about-section,
    .about-standout,
    .who-we-serve-section {
        padding-top: 10rem;
    }

    .our-customers-section {
        margin-top: 10rem;
        padding: 5rem 0;
    }

    .about-standout-eyebrow,
    .who-we-serve-eyebrow,
    .how-it-works-eyebrow {
        font-size: 2.5rem;
    }

    .products-grid {
        padding: 0 3rem;
    }

    .products-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-panel-item {
        min-height: 44rem;
        text-align: center;
        align-items: center;
    }

    .product-panel-item h3 {
        font-size: 2.6rem;
    }

    .product-panel-image img {
        width: 80%;
        height: auto;
        margin: 0 auto;
        padding: 0;
    }

    .product-panel-item p {
        text-align: center;
    }

    .eyebrow-decoration.product-divider {
        margin: 0 auto 2.5rem auto;
    }

    .about-who-content,
    .who-we-serve-layout {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
    }

    .about-who-text,
    .about-who-image,
    .who-we-serve-image,
    .who-we-serve-content {
        width: 100%;
    }

    .about-who {
        padding: 8rem 0;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.2rem;
    }

    .who-we-serve-list {
        gap: 2.2rem;
    }

    .process-rows {
        max-width: 100%;
    }

    .process-row {
        max-width: 100%;
        grid-template-columns: 6rem 1fr;
        gap: 2rem;
        padding: 2.4rem 2.8rem;
    }

    .process-step-badge {
        width: 6rem;
        height: 6rem;
        font-size: 2.1rem;
    }

    .process-row-content h3 {
        font-size: 2.1rem;
    }

    .process-row-content p {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 0 0 8rem;
    }

    .contact-form-section {
        padding: 0;
    }

    .contact-form-card {
        max-width: 100%;
        padding: 2.6rem 2rem;
    }

    .form-row.two-columns {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
}

@media (max-width: 767px) {
    .page-container {
        padding: 0 1.6rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .main-title {
        gap: 0.2rem;
    }

    .main-title h2 {
        font-size: 3.6rem;
    }

    .section-header.eyebrow-title .text-eyebrow {
        font-size: 2.5rem;
    }

    .banner {
        padding: 14rem 0 0 0;
    }

    .banner #home-text {
        font-size: 3.8rem;
    }

    .banner #home-desc {
        font-size: 1.8rem;
    }

    .hero-button {
        min-width: 100%;
        height: 5rem;
        font-size: 1.45rem;
    }


    .about-who-text .desc p {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .products-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .product-panel-item {
        min-height: auto;
    }

    .product-panel-image {
        width: 100%;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-card {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.4rem;
    }

    .why-us-icon-wrap {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .why-us-text,
    .who-we-serve-text {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 0;
    }

    .why-us-text h3,
    .who-we-serve-text h3 {
        margin: 0;
        font-size: 2rem;
    }

    .why-us-text p,
    .who-we-serve-text p {
        margin: 0;
        font-size: 1.5rem;
    }

    .who-we-serve-item {
        gap: 1.4rem;
    }

    .customers-track {
        gap: 1rem;
        animation-duration: 35s;
    }

    .customer-logo {
        min-width: 12rem;
    }

    .customer-logo img {
        max-width: 9rem;
        max-height: 4.5rem;
    }

    .process-row {
        display: grid;
        grid-template-columns: 6rem 1fr;
        gap: 1.6rem;
        align-items: flex-start;
        padding: 2rem 1.8rem;
        text-align: left;
    }

    .process-step-badge {
        margin-bottom: 0;
    }

    .contact-form-card {
        padding: 2rem 1.6rem;
        border-radius: 1.2rem;
    }

    .form-field input,
    .form-field textarea {
        font-size: 1.4rem;
    }

    .contact-submit-button {
        width: 100%;
        min-width: 100%;
    }

    .product-panel-item {
        padding: 1.4rem;
        background-color: #f4efe6;
        border: 1px solid rgba(0, 0, 0, 0.02);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
    }

    .product-panel-image {
        border-radius: 1.2rem;
        margin-bottom: 1.8rem;
    }

    .product-panel-item h3,
    .product-panel-item p {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    .product-panel-footer {
        padding: 2rem 0.4rem 0.4rem;
    }

    /* Reorder elements inside product cards */
    .product-panel-item h3 {
        order: 1;
    }

    .product-panel-image {
        order: 2;
    }

    .product-panel-item p {
        order: 3;
    }

    .product-panel-footer {
        order: 4;
    }
}

@media (max-width: 575px) {
    .page-container {
        padding: 0 1.2rem;
    }

    .banner {
        padding: 13rem 0 0 0;
    }

    .banner .page-container {
        gap: 3rem;
    }

    .banner #home-text {
        font-size: 3.2rem;
    }

    .banner #home-desc {
        font-size: 1.65rem;
    }

    .products-panel {
        grid-template-columns: 1fr;
    }

    .product-panel-item {
        padding: 1.2rem;
        border-radius: 1.6rem;
    }

    .product-panel-item h3 {
        font-size: 3rem;
    }

    .product-panel-image {
        border-radius: 1rem;
    }

    .product-panel-footer {
        padding: 1.8rem 0.4rem 0.2rem;
    }

    .product-section,
    .about-section,
    .about-standout,
    .who-we-serve-section {
        padding-top: 10rem;
    }

    .about-who {
        padding: 6rem 0;
    }

    .our-customers-section {
        margin-top: 8rem;
        padding: 5rem 0;
    }

    .how-it-works-section {
        padding: 5rem 0;
    }

    .contact-section {
        padding: 3rem 0 6rem;
    }

    .contact-form-section {
        padding: 4rem 0 0;
    }

    .process-row-content h3 {
        font-size: 1.9rem;
    }

    .product-panel-item p,
    .process-row-content p,
    .why-us-text p,
    .who-we-serve-text p {
        font-size: 1.45rem;
    }

    .why-us-icon-wrap,
    .who-we-serve-icon {
        width: 4.6rem;
        height: 4.6rem;
    }

    .process-step-badge {
        width: 5.4rem;
        height: 5.4rem;
        font-size: 1.9rem;
        border-radius: 1.2rem;
    }

    .form-field label {
        font-size: 1.3rem;
    }

    .form-field input,
    .form-field textarea {
        padding: 1.1rem 1.2rem;
    }

    .contact-submit-button {
        height: 4.6rem;
        font-size: 1.3rem;
    }

    .form-success-message {
        font-size: 1.3rem;
    }
}
