/* Reset some default styles */
body, h1, h3, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Container styling */
.studio, .contactUs {
    padding: 20px;
}

/* Flexbox for layout */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Studio image styles */
.studio img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners */
}

/* Contact Us section styles */
.contactUs {
    text-align: center;
    margin-top: 20px;
}

.contactUs h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contactUs h3 {
    font-size: 18px;
    margin: 10px 0;
}

.contactUs p {
    font-size: 16px;
    line-height: 1.5;
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-around;
        max-width: 1200px;
        margin: auto;
    }

    .studio, .contactUs {
        width: 45%; /* Adjust as needed for spacing */
    }

    .contactUs h1 {
        font-size: 28px;
    }

    .contactUs h3 {
        font-size: 20px;
    }

    .contactUs p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .contactUs h1 {
        font-size: 22px;
    }

    .contactUs h3 {
        font-size: 16px;
    }

    .contactUs p {
        font-size: 14px;
    }
}


.qr-container{
    padding: 0 70px;
}

.button-containerig {
    border-radius: 50px;
    padding: 12px 16px;
    background-color: rgb(225, 222, 58);
    color: rgb(255, 255, 255);
    margin: 0 20px;
    text-align: center;
}
.logo-mob{
    color: rgb(231, 200, 30);
    margin-bottom: 20px;
}