/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 19 2026 | 18:03:46 */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

.bm-wrapper {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding:50px;
    font-family: 'Montserrat', sans-serif;
    color: #4A4A4A;
    box-shadow: 0px 10px 40px rgba(0,0,0,0.15);
    display: flex;
    min-height: 450px;
	margin-top: 40px;
    margin-bottom: 40px;
}

.bm-content {
    width: 55%;
    position: relative;
    z-index: 3;
}

.bm-wrapper h2 {
    font-size: 42px;
    font-weight: 300;
    color: #4A4A4A;
    margin-bottom: 15px;
    line-height: 1.1;
}

.bm-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #555555;
    max-width: 90%;
}

.bm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-bottom: 25px;
}

.bm-box {
    border: 1px solid #7D8180;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 20px;
    font-weight: 700;
    color: #4A4A4A;
    text-align: center;
    margin-bottom: 10px;
}

.bm-desc {
    font-size: 12px;
    line-height: 1.4;
    color: #666666;
    margin: 0;
}

.bm-desc strong {
    color: #4A4A4A;
    font-weight: 700;
}

.bm-note {
    font-size: 12px;
    color: #999999;
    margin-bottom: 30px;
}

.bm-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #838A88;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.bm-button:hover {
    background-color: #6B7270;
}

.bm-image-container {
    position: absolute;
    right: -40px;
    bottom: -30px;
    width: 45%;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.bm-image {
    width: 100%;
    height: auto;
    max-width: 500px;
}

@media (max-width: 980px) {
    .bm-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    .bm-content {
        width: 100%;
        text-align: center;
    }

    .bm-subtitle {
        max-width: 100%;
    }

    .bm-grid {
        text-align: left;
    }

    .bm-image-container {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
    
    .bm-image {
        max-width: 100%;
        margin-bottom: -30px; 
    }
}

@media (max-width: 600px) {
    .bm-grid {
        grid-template-columns: 1fr;
    }
    .bm-wrapper h2 {
        font-size: 32px;
    }
}