/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    font-size: larger;
}

body {
    font-family: 'MyCustomFont', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Workshop Container */
.workshop-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.workshop-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 4px solid transparent;
    border-image: linear-gradient(to right, #ff7e5f, #e57cff, blue);
    border-image-slice: 1;
}

.workshop-content h3 {
    text-align: center;
    font-size: 1.8em;
    color: #333;
    margin-bottom: 20px;
}

.workshop-content>p {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Detail Items */
.workshop-details {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #444;
}

.detail-item strong {
    min-width: 200px;
    color: #333;
}

.detail-item span {
    color: #555;
}

/* Workshop Notes */
.workshop-notes {
    background-color: #fff8e1;
    border: 2px solid #f7931e;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 25px;
}

.workshop-notes p {
    font-size: 1em;
    color: #444;
    margin-bottom: 8px;
    line-height: 1.6;
}

.workshop-notes p:last-child {
    margin-bottom: 0;
}

/* Brochure Button */
.brochure-link {
    text-align: center;
    margin-top: 10px;
}

.brochure-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    background: linear-gradient(45deg, #d89b51, #82325d, #455db2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.brochure-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .detail-item {
        flex-direction: column;
    }

    .detail-item strong {
        min-width: auto;
        margin-bottom: 4px;
    }

    .workshop-content {
        padding: 25px;
    }
}