/* Content Section Block Styles - Two Column Layout */
.content-section-block {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Apple Gothic', sans-serif;
}

/* Layout direction */
.layout-image-left {
    flex-direction: row;
}

.layout-image-right {
    flex-direction: row-reverse;
}

/* Section Columns */
.section-column {
    flex: 1;
    display: flex;
}

/* Image Column */
.image-column {
    position: relative;
}

.image-column .column-image {
    width: 100%;
    height: 100%;
}

.image-column .column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Column */
.content-column {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.content-wrapper {
    max-width: 500px;
    width: 100%;
}

/* Section Title */
.section-title {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

/* Section Content */
.section-content {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px !important;
    line-height: 0.8;
    margin: 0 0 35px 0;
}

.section-content p {
    margin: 0 0 20px 0;
}

.section-content strong {
    font-weight: 700;
}

.section-content em {
    font-style: italic;
}

/* Section Button */
.section-button-container {
    margin-top: 25px;
}

.section-button {
    display: inline-block;
    padding: 15px 40px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Button Styles */
.button-style-outline {
    background: transparent;
}

.button-style-outline:hover {
    background: currentColor;
}

.button-style-filled:hover {
    opacity: 0.9;
}

/* Section Height */
.section-height-auto {
    height: auto;
    min-height: 400px;
}

.section-height-auto .section-column {
    height: auto;
}

.section-height-small {
    height: 400px;
}

.section-height-medium {
    height: 600px;
}

.section-height-large {
    height: 800px;
}

.section-height-small .section-column,
.section-height-medium .section-column,
.section-height-large .section-column {
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-column {
        padding: 50px 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-content {
        font-size: 17px;
    }
    
    .content-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .content-section-block {
        flex-direction: column !important;
        height: auto !important;
    }
    
    .section-column {
        height: auto !important;
    }
    
    .image-column {
        height: 300px;
    }
    
    .content-column {
        padding: 40px 25px;
        height: auto;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .section-content {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .section-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .image-column {
        height: 250px;
    }
    
    .content-column {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-content {
        font-size: 15px;
    }
    
    .section-button {
        padding: 10px 25px;
        font-size: 12px;
    }
}

/* Ensure proper box sizing */
.content-section-block * {
    box-sizing: border-box;
}