/* Choose Us Section Styles */
.choose-us-section {
    position: relative;
    width: 100%;
    /* padding: 20px 0; */
    background-color: #fff;
    overflow: hidden;
    margin-bottom: 20px;
}

.choose-us-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.workout-image {
    margin-bottom: 10px;
    max-width: 50%;
    height: auto;
}

.choose-us-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.5rem;
}

.studio-brand {
    margin-bottom: 20px;
    max-width: 300px;
}

.studio-logo {
    max-width: 100%;
    height: auto;
}

.choose-us-description {
    max-width: 500px;
    margin: 0 auto 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    line-height: 1.1;
    color: #333;
}

.choose-us-paragraph {
    margin-bottom: 20px;
}

.choose-us-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.choose-us-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.choose-us-button:hover {
    background-color: transparent;
    color: #000;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .choose-us-section {
        padding: 60px 0;
    }

    .workout-image {
        margin-bottom: 20px;
    }

    .choose-us-title {
        font-size: 2.5rem;
    }

    .studio-brand {
        margin-bottom: 30px;
    }

    .choose-us-description {
        font-size: 1rem;
    }

    .choose-us-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }

    .choose-us-button {
        width: 100%;
        text-align: center;
    }
} 