.pa-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    height: 100vh;
    width: 100%;
    /* Use full width by default */
    max-width: 1200px;
    /* Set max-width to prevent excessive stretching */
}

.pa-description,
.pa-bullet {
    width: 100%;
    /* Use full width relative to the container */
    height: auto;
    padding: 0 1rem;
    /* Responsive padding */
}

.pa-logo-1 {
    margin-right: auto;
    margin-left: 1rem;
}

.pa-studio-btn-1 {
    display: flex;
    align-items: center;
    margin: 2rem auto;
    background-color: #222222;
    padding: 0.5rem 2rem;
    gap: 2px;
    border-radius: 1rem;
    border: none;
    color: #eeeeee;
    font-family: "Playfair Display", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 18px;
    cursor: pointer;
    transition: var(--trans);
}

.pa-studio-btn-1:hover {
    text-decoration: underline;
    background-color: #000000;
    color: #eeeeee;
    transition: var(--trans);
}





/* Responsive design */

/* Small laptops or windows (up to 992px) */
@media only screen and (max-width: 992px) {
    .pa-container {
        width: 90vw;
        padding: 1rem;
        flex-direction: column;

    }

    .pa-description,
    .pa-bullet {
        width: 100%;
        padding: 1rem;
    }

    .pa-studio-btn-1 {
        font-size: 16px;
        padding: 0.4rem 1.5rem;
    }
}

/* Tablets and large smartphones (up to 600px) */
@media only screen and (max-width: 600px) {
    .pa-container {
        width: 100vw;
        flex-direction: column;

    }

    .pa-description,
    .pa-bullet {
        width: 100%;
        padding: 1rem;
        text-align: center;
        /* Center align for readability */
    }

    .pa-studio-btn-1 {
        font-size: 15px;
        padding: 0.4rem 1.2rem;
    }
}

/* Standard and small iPhones (up to 414px) */
@media only screen and (max-width: 414px) {
    .pa-container {
        width: 100vw;
        flex-direction: column;
        align-items: center;

        padding: 1rem;
    }

    .pa-description,
    .pa-bullet {
        width: 100%;
        padding: 0.5rem 1rem;
        text-align: center;
    }

    .pa-studio-btn-1 {
        font-size: 14px;
        padding: 0.4rem 1rem;
    }
}