.main-content-detail {
    padding-top: 120px;
    padding-bottom: 60px;
    background-color: #f9f9f9;
}

.detail-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #006400;
    font-weight: 600;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #005000;
}

.back-button i {
    font-size: 1em;
}

.detail-title {
    font-size: 2.5em;
    color: #005000;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.detail-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.detail-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.detail-content p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .main-content-detail {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .detail-container {
        padding: 20px;
        margin: 0 15px;
    }
    .detail-title {
        font-size: 2em;
        margin-bottom: 20px;
    }
    .detail-image-wrapper {
        max-height: 400px;
    }
    .detail-content {
        font-size: 1em;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .main-content-detail {
        padding-top: 80px;
    }
    .detail-container {
        padding: 15px;
        margin: 0 10px;
    }
    .detail-title {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    .detail-image-wrapper {
        max-height: 300px;
    }
    .detail-content {
        font-size: 0.95em;
        line-height: 1.6;
    }
    .back-button {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
}
