body {
    font-family: 'Montserrat', sans-serif;
    color: #26343F;
    background-image: linear-gradient(to bottom,#FFFFFF, #EDE7E0);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

h1.title {
    font-size: 6rem;
    font-weight: 700;
    color: #26343F;
    text-align: center;
}

h1.heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26343F;
    text-align: center;
}

h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #26343F;
    text-align: left;
}

.container {
    padding: 2rem;
    max-width: 768px;
    margin: 0 auto;
}

.links {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;

    & li {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    & a {
        color: #26343F;
        transition: color 0.3s ease;

        &:hover {
            color: #26343F50;
        }
    }
}

.logo {
    width: 100%;
    max-width: 150px;
    aspect-ratio: 1/1;
    margin: 0 auto 2rem auto;
    display: block;
    height: auto;
    object-fit: contain;
    padding: 1.5rem;
    border-radius: 2.8rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background-color: #EDE7E0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 512px;
    margin: 0 auto;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

    & label {
        font-size: 0.8rem;
        font-weight: 500;
        color: #26343F;
    }

    & input, & textarea {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: #26343F;
        padding: 0.5rem;
        border-radius: 0.5rem;
        border: none;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    }
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;

    & button {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        background-color: #26343F;
        color: #FFFFFF;
        padding: 0.8rem;
        border-radius: 0.5rem;
        border: none;
        cursor: pointer;
        width: 100%;
        transition: background-color 0.3s ease;
    }

    & button:hover {
        background-color: #26343F50;
    }
}
 
p {
    font-size: 0.8rem;
    font-weight: 500;
    color: #26343F;
    line-height: 1.5;
}

.description {
    text-align: center;
    max-width: 75ch;
    margin: 2rem auto;
}

.description-ar {
    font-family: "Noto Sans Arabic", sans-serif;
    text-align: center;
    max-width: 75ch;
    margin: 2rem auto;
}

.store-icon {
    transition: all 0.3s ease;
    
    &:hover {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.whatsapp-icon-link {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #26343F;
    border-radius: 50%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

    & img {
        width: 24px;
        height: 24px;
        fill: white;
    }

    &:hover {
        transform: scale(1.05);
        opacity: 0.8;
    }
}