.vsd-442 .vsd-element.vsd-element-113c61a{--display:flex;}/* Start custom CSS */.content-container {
        font-family: 'Roboto', sans-serif;
        margin: 0px auto;
        padding: 25px;
        border-radius: 16px;
        background-color: #ffffff;
        box-shadow: 0 8px 81px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        position: relative;
    }

    .intro-text {
        font-size: 18px;
        color: #333;
        margin: 0;
    }

    .toggle-content {
        color: #1a73e8;
        cursor: pointer;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
        position: absolute;
        bottom: 14px;
        right: 24px;
    }

    .toggle-content:hover {
        color: #004bb5;
    }

    .hidden-content {
        display: none;
        margin-top: 20px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
        animation: fadeIn 0.3s ease-in-out;
    }

    .hidden-content h2 {
        margin: 16px 0 8px;
        font-size: 20px;
        color: #212121;
        font-weight: 500;
    }

    .hidden-content p {
        margin: 0 0 15px;
        color: #555;
        font-size: 16px;
        line-height: 1.7;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }/* End custom CSS */