.container-dcdc {
    display: flex;
    width: 100%;
    gap: 20px;
}

.sidebar,
.content1 {
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.note1,
.note,
.title1 {
    color: black;
}

.sidebar {
    width: 20%;
    background: #f8f9fa;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
    padding: 10px;
    background: #007bff;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.sidebar ul li:hover {
    transform: translateX(10px);
    background: #0056b3;
}

.sidebar ul li a {
    text-decoration: none;
    color: white;
    display: block;
}

.content1 {
    flex: 1;
}

.title1 {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    padding-left: 30px;
    color: #ff0000;
}

.title1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: red;
    clip-path: polygon(0 1, 100% 0, 0 100%);
}

.note {
    margin-top: 20px;
    padding: 10px;
    background: #ffefba;
    border-left: 4px solid orange;
}

.image-section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container1 {
    width: 100%;
    max-width: 250px;
    height: 200px;
    background: url('https://source.unsplash.com/random/250x200') no-repeat center center/cover;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
    transition: transform 0.3s;
}

.image-container1:hover {
    transform: scale(1.1);
}


/* Button Link Toggle */

.toggle-container {
    max-width: 600px;
    margin-bottom: 10px;
    display: inline-block;
}

.toggle-wrapper {
    /* max-width: 600px; */
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: sans-serif;
    background-color: #fdfdfd;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.toggle-wrapper,
.toggle-content {
    border-bottom: 1px solid #0a0909;
    /* You can change the color as needed */
    padding-bottom: 10px;
    /* Optional: adds spacing between text and underline */
    margin-bottom: 10px;
    /* Optional: adds spacing below the underline */
}

.toggle-wrapper:hover {
    background-color: #f0f0f0;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.toggle-wrapper.active .toggle-icon {
    transform: rotate(90deg);
}

.toggle-content {
    display: none;
    animation: slideIn 0.4s forwards;
    margin-top: 6px;
    max-width: 600px;
    padding-bottom: 10px;
}

.toggle-wrapper.active+.toggle-content {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle-content ul {
    margin: 0;
    padding: 0;
}

.toggle-content li {
    text-align: left;
}

.toggle-content a {
    display: inline-block;
    color: #da7f1f;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s, text-decoration 0.3s;
}

.toggle-content a:hover {
    color: #0056b3;
}