:root {
    --main-color: #000000;
    --main-color-dark: #407ba3;
    --max-width: 800px;
}

body {
    background-color: #ffffff;
}

.logo-box {
    display: block;
    max-width: var(--max-width);
    margin: auto;
}

    .logo-box p {
        text-align: center;
        font-size: 20px;
    }

.logo {
    max-width: 300px;
    margin: auto;
    display: block;
    padding: 10px;
}

.h1-main {
    font-size: 3rem;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.contact-details {
    margin-top: 30px;
    font-size: 18px;
    max-width: var(--max-width);
}

.catalogue, .catalogue p, .catalogue img {
    display: block;
    margin: auto;
}

    .catalogue p {
        text-align: center;
        margin-bottom: 20px;
    }

.intro-text {
    margin-top: 40px;
}

    .intro-text p {
        margin: 0;
        font-style: italic;
        line-height: 2;
    }

.form-container {
    max-width: 700px;
    margin: 40px auto;
}

.custom-alert {
    text-align: center;
}

    .custom-alert a {
        display: block;
        margin: auto;
        width: fit-content;
    }

.h2-form {
    color: var(--main-color);
    text-align: center;
}

.validator-msg {
    font-size: 16px !important;
    display: block;
    color: darkred;
}

.form-type {
    display: inline-flex;
    gap: 20px;
}

    .form-type p {
        margin-bottom: 0 !important;
    }

.block-label {
    display: block;
}

.carousel-item {
    height: 100%;
}

.btn-color {
    background-color: var(--main-color);
    color: white;
    transition: all 0.3s ease;
}

    .btn-color:hover {
        background-color: var(--main-color-dark);
        color: white;
    }

.checkbox-header b {
    text-align: center;
    display: block;
    padding-bottom: 15px;
}

.founder {
    max-width: 890px;
    margin: 0 auto;
}

    .founder p {
        margin-top: 25px;
    }
        .founder p span{
            display:block;
        }
        .checkbox-header label {
            display: block
        }

form ul li {
    list-style: none;
}

    form ul li:before {
        content: "\2713";
        margin-right: 5px;
    }

.google-policy {
    max-width: var(--max-width);
    margin: 40px auto;
}

.align-text-center {
    text-align: center;
}

.h2-qr-codes {
    text-align: center;
    display: block;
    margin: 20px auto;
    width: var(--max-width);
}

.qr-codes {
    max-width: 890px;
    margin: 25px auto;
    display: flex;
    align-items: baseline;
    gap: 30px;
}

    .qr-codes img {
        width: 200px;
        height: auto;
    }

    .qr-codes p {
        text-align: center;
        margin: 0;
        font-size: 20px;
    }

.steve-brochures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
}

.brochure img {
    width: auto;
    height: 400px;
}

.cta-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-link-btn:hover,
    .cta-link:hover {
        text-decoration: underline;
    }

.cta-link-btn {
    display: flex;
    width: fit-content;
    height: 30px;
    align-items: center;
    justify-content: center;
    background-color: black;
    color: #ffff;
    text-decoration: none;
    padding: 0 10px;
    border-radius: 10px;
    box-sizing: border-box;
    margin: auto;
}
.social-icon{
    font-size:2.2rem;
    transition:color 0.3s ease-in-out;
}
    .social-icon:hover{
        color:#1d1c1c;
    }

    @media (max-width: 920px) {
        .qr-codes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 820px;
        justify-items: center;
        gap: 20px;
    }

    .h2-qr-codes {
        max-width: 820px;
    }

    .qr-codes img {
        width: auto;
        height: 200px;
        display: block;
        margin: auto;
    }

    .qr-codes p {
        padding: 10px;
    }
}

@media (max-width: 800px) {
    .qr-codes {
        display: grid;
        grid-template-columns: 1fr;
        max-width: none;
        width: 100%;
        justify-items: center;
        gap: 20px;
    }
    .steve-brochures{
        grid-template-columns:1fr;
    }
    .catalogue, .catalogue p, .catalogue img{
        width:100%;
    }
    .founder, .google-policy {
        padding: 20px;
    }
    
    .h2-qr-codes {
        max-width: none;
        width: 100%;
    }

    .qr-codes p {
        padding: 20px;
    }
}
