.page-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.case-title {
    font-size: 2rem;
    margin: 0 0 2rem 0;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

.case-detail {
    position: relative;
    margin: 2rem 0;
}

.case-detail-image {
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 2rem 1rem 0;
    float: left;

}

.case-detail-content {
    overflow: visible;
}

.case-detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin: auto;

}

.case-detail-description p {
    margin-bottom: 1.5rem;
}

.case-detail-description img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .case-detail-image {
        float: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 2rem auto;
        display: block;
    }
    
    .case-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 15px;
    }
    
    .case-title {
        font-size: 1.6rem;
    }
    
    .case-detail-image {
        border-radius: 8px;
        margin-bottom: 1.5rem;
    }
    
    .case-detail-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}


.case-detail::after {
    content: "";
    display: table;
    clear: both;
}

.case-detail-description h2 {
    font-size: 1.5rem;
    color: #222;
    margin: 2rem 0 1rem 0;
}

.case-detail-description ul,
.case-detail-description ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.case-detail-description blockquote {
    border-left: 4px solid #007BFF;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-style: italic;
}